Merge branch '2.3'

Conflicts:
	resources/definitions/fdmprinter.def.json
	resources/materials/generic_abs.xml.fdm_material
	resources/materials/generic_cpe.xml.fdm_material
	resources/materials/generic_nylon.xml.fdm_material
	resources/materials/generic_pla.xml.fdm_material
	resources/materials/ultimaker_abs_black.xml.fdm_material
	resources/materials/ultimaker_abs_blue.xml.fdm_material
	resources/materials/ultimaker_abs_green.xml.fdm_material
	resources/materials/ultimaker_abs_grey.xml.fdm_material
	resources/materials/ultimaker_abs_orange.xml.fdm_material
	resources/materials/ultimaker_abs_pearl-gold.xml.fdm_material
	resources/materials/ultimaker_abs_red.xml.fdm_material
	resources/materials/ultimaker_abs_silver-metallic.xml.fdm_material
	resources/materials/ultimaker_abs_white.xml.fdm_material
	resources/materials/ultimaker_abs_yellow.xml.fdm_material
	resources/materials/ultimaker_cpe_black.xml.fdm_material
	resources/materials/ultimaker_cpe_blue.xml.fdm_material
	resources/materials/ultimaker_cpe_dark-grey.xml.fdm_material
	resources/materials/ultimaker_cpe_green.xml.fdm_material
	resources/materials/ultimaker_cpe_light-grey.xml.fdm_material
	resources/materials/ultimaker_cpe_red.xml.fdm_material
	resources/materials/ultimaker_cpe_transparent.xml.fdm_material
	resources/materials/ultimaker_cpe_white.xml.fdm_material
	resources/materials/ultimaker_cpe_yellow.xml.fdm_material
	resources/materials/ultimaker_nylon_black.xml.fdm_material
	resources/materials/ultimaker_nylon_transparent.xml.fdm_material
	resources/materials/ultimaker_pla_black.xml.fdm_material
	resources/materials/ultimaker_pla_blue.xml.fdm_material
	resources/materials/ultimaker_pla_green.xml.fdm_material
	resources/materials/ultimaker_pla_magenta.xml.fdm_material
	resources/materials/ultimaker_pla_orange.xml.fdm_material
	resources/materials/ultimaker_pla_pearl-white.xml.fdm_material
	resources/materials/ultimaker_pla_red.xml.fdm_material
	resources/materials/ultimaker_pla_silver-metallic.xml.fdm_material
	resources/materials/ultimaker_pla_transparent.xml.fdm_material
	resources/materials/ultimaker_pla_white.xml.fdm_material
	resources/materials/ultimaker_pla_yellow.xml.fdm_material

Contributes to issue CURA-2737.
This commit is contained in:
Ghostkeeper 2016-10-20 12:41:31 +02:00
commit 3c9ebfab8f
No known key found for this signature in database
GPG key ID: C5F96EE2BC0F7E75
93 changed files with 46144 additions and 2453 deletions

1
.gitignore vendored
View file

@ -8,6 +8,7 @@ docs/html
resources/i18n/en
resources/i18n/x-test
resources/firmware
resources/materials
LC_MESSAGES
# Editors and IDEs.

View file

@ -200,6 +200,8 @@ class ConvexHullDecorator(SceneNodeDecorator):
if len(vertex_data) >= 4:
convex_hull = hull.getConvexHull()
offset_hull = self._offsetHull(convex_hull)
else:
return Polygon([]) # Node has no mesh data, so just return an empty Polygon.
# Store the result in the cache
self._2d_convex_hull_mesh = mesh

View file

@ -283,17 +283,17 @@ class CuraApplication(QtApplication):
cool_fan_enabled
support
support_enable
support_extruder_nr
support_type
support_interface_density
platform_adhesion
adhesion_type
adhesion_extruder_nr
brim_width
raft_airgap
layer_0_z_overlap
raft_surface_layers
dual
adhesion_extruder_nr
support_extruder_nr
prime_tower_enable
prime_tower_size
prime_tower_position_x

View file

@ -170,11 +170,16 @@ class SettingInheritanceManager(QObject):
def _onGlobalContainerChanged(self):
if self._global_container_stack:
self._global_container_stack.propertyChanged.disconnect(self._onPropertyChanged)
self._global_container_stack.containersChanged.disconnect(self._onContainersChanged)
self._global_container_stack = Application.getInstance().getGlobalContainerStack()
if self._global_container_stack:
self._global_container_stack.containersChanged.connect(self._onContainersChanged)
self._global_container_stack.propertyChanged.connect(self._onPropertyChanged)
self._onActiveExtruderChanged()
def _onContainersChanged(self, container):
self._onActiveExtruderChanged()
@staticmethod
def createSettingInheritanceManager(engine=None, script_engine=None):
return SettingInheritanceManager()

View file

@ -13,6 +13,7 @@ from UM.Settings.InstanceContainer import InstanceContainer
import re #For escaping characters in the settings.
import json
import copy
## Writes g-code to a file.
#
@ -80,7 +81,7 @@ class GCodeWriter(MeshWriter):
flat_container.setDefinition(instance_container1.getDefinition())
else:
flat_container.setDefinition(instance_container2.getDefinition())
flat_container.setMetaData(instance_container2.getMetaData())
flat_container.setMetaData(copy.deepcopy(instance_container2.getMetaData()))
for key in instance_container2.getAllKeys():
flat_container.setProperty(key, "value", instance_container2.getProperty(key, "value"))

View file

@ -1331,39 +1331,6 @@
"settable_per_mesh": false,
"settable_per_extruder": true
},
"retraction_hop_enabled":
{
"label": "Z Hop when Retracted",
"description": "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.",
"type": "bool",
"default_value": false,
"enabled": "retraction_enable",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"retraction_hop_only_when_collides":
{
"label": "Z Hop Only Over Printed Parts",
"description": "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling.",
"type": "bool",
"default_value": false,
"enabled": "retraction_enable and retraction_hop_enabled and travel_avoid_other_parts",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"retraction_hop":
{
"label": "Z Hop Height",
"description": "The height difference when performing a Z Hop.",
"unit": "mm",
"type": "float",
"default_value": 1,
"minimum_value_warning": "0.75 * machine_nozzle_size",
"maximum_value_warning": "10",
"enabled": "retraction_enable and retraction_hop_enabled",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"material_standby_temperature":
{
"label": "Standby Temperature",
@ -1440,16 +1407,6 @@
"settable_per_extruder": true
}
}
},
"retraction_hop_after_extruder_switch":
{
"label": "Z Hop After Extruder Switch",
"description": "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.",
"type": "bool",
"default_value": true,
"enabled": "retraction_hop_enabled",
"settable_per_mesh": false,
"settable_per_extruder": true
}
}
},
@ -2259,6 +2216,45 @@
"enabled": "resolveOrValue('retraction_combing') != 'off' and travel_avoid_other_parts",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"retraction_hop_enabled": {
"label": "Z Hop when Retracted",
"description": "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.",
"type": "bool",
"default_value": false,
"enabled": "retraction_enable",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"retraction_hop_only_when_collides": {
"label": "Z Hop Only Over Printed Parts",
"description": "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling.",
"type": "bool",
"default_value": false,
"enabled": "retraction_enable and retraction_hop_enabled and travel_avoid_other_parts",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"retraction_hop": {
"label": "Z Hop Height",
"description": "The height difference when performing a Z Hop.",
"unit": "mm",
"type": "float",
"default_value": 1,
"minimum_value_warning": "0.75 * machine_nozzle_size",
"maximum_value_warning": "10",
"enabled": "retraction_enable and retraction_hop_enabled",
"settable_per_mesh": false,
"settable_per_extruder": true
},
"retraction_hop_after_extruder_switch": {
"label": "Z Hop After Extruder Switch",
"description": "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.",
"type": "bool",
"default_value": true,
"enabled": "retraction_hop_enabled and machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": true
}
}
},
@ -2416,6 +2412,51 @@
"settable_per_mesh": true,
"settable_per_extruder": false
},
"support_extruder_nr":
{
"label": "Support Extruder",
"description": "The extruder train to use for printing the support. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"enabled": "support_enable and machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false,
"children": {
"support_infill_extruder_nr":
{
"label": "Support Infill Extruder",
"description": "The extruder train to use for printing the infill of the support. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"value": "support_extruder_nr",
"enabled": "support_enable and machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false
},
"support_extruder_nr_layer_0":
{
"label": "First Layer Support Extruder",
"description": "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"value": "support_extruder_nr",
"enabled": "support_enable and machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false
},
"support_interface_extruder_nr":
{
"label": "Support Interface Extruder",
"description": "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"value": "support_extruder_nr",
"enabled": "support_enable and machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false
}
}
},
"support_type":
{
"label": "Support Placement",
@ -2858,6 +2899,16 @@
"settable_per_mesh": false,
"settable_per_extruder": false
},
"adhesion_extruder_nr":
{
"label": "Build Plate Adhesion Extruder",
"description": "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"enabled": "machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false
},
"skirt_line_count":
{
"label": "Skirt Line Count",
@ -3407,62 +3458,6 @@
"enabled": "machine_extruder_count > 1",
"children":
{
"adhesion_extruder_nr":
{
"label": "Build Plate Adhesion Extruder",
"description": "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"enabled": "machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false
},
"support_extruder_nr":
{
"label": "Support Extruder",
"description": "The extruder train to use for printing the support. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"enabled": "support_enable and machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false,
"children":
{
"support_infill_extruder_nr":
{
"label": "Support Infill Extruder",
"description": "The extruder train to use for printing the infill of the support. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"value": "support_extruder_nr",
"enabled": "support_enable and machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false
},
"support_extruder_nr_layer_0":
{
"label": "First Layer Support Extruder",
"description": "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"value": "support_extruder_nr",
"enabled": "support_enable and machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false
},
"support_interface_extruder_nr":
{
"label": "Support Interface Extruder",
"description": "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion.",
"type": "extruder",
"default_value": "0",
"value": "support_extruder_nr",
"enabled": "support_enable and machine_extruder_count > 1",
"settable_per_mesh": false,
"settable_per_extruder": false
}
}
},
"prime_tower_enable":
{
"label": "Enable Prime Tower",

View file

@ -0,0 +1,84 @@
{
"id": "ultimaker3",
"version": 2,
"name": "Ultimaker 3",
"inherits": "ultimaker",
"metadata": {
"author": "Ultimaker",
"manufacturer": "Ultimaker",
"category": "Ultimaker",
"visible": true,
"file_formats": "text/x-gcode",
"platform": "ultimaker3_platform.obj",
"platform_texture": "Ultimaker3backplate.png",
"platform_offset": [0, 0, 0],
"has_machine_quality": true,
"has_materials": true,
"has_machine_materials": true,
"has_variant_materials": true,
"has_variants": true,
"preferred_variant": "*aa*",
"preferred_quality": "*Normal*",
"variants_name": "Print core",
"machine_extruder_trains":
{
"0": "ultimaker3_extruder_left",
"1": "ultimaker3_extruder_right"
},
"first_start_actions": [ "DiscoverUM3Action" ],
"supported_actions": [ "DiscoverUM3Action" ],
"supports_usb_connection": false
},
"overrides": {
"machine_name": { "default_value": "Ultimaker 3" },
"machine_width": { "default_value": 215 },
"machine_depth": { "default_value": 215 },
"machine_height": { "default_value": 200 },
"machine_heated_bed": { "default_value": true },
"machine_nozzle_heat_up_speed": { "default_value": 0.8 },
"machine_nozzle_cool_down_speed": { "default_value": 1 },
"machine_head_with_fans_polygon":
{
"default_value":
[
[ -40, 10 ],
[ -40, -30 ],
[ 60, 10 ],
[ 60, -30 ]
]
},
"machine_center_is_zero": { "default_value": false },
"machine_gcode_flavor": { "default_value": "Griffin" },
"machine_max_feedrate_x": { "default_value": 300 },
"machine_max_feedrate_y": { "default_value": 300 },
"machine_max_feedrate_z": { "default_value": 40 },
"machine_acceleration": { "default_value": 3000 },
"gantry_height": { "default_value": 60 },
"machine_use_extruder_offset_to_offset_coords": { "default_value": true },
"machine_disallowed_areas": { "default_value": [
[[-91.5, -115], [-115, -115], [-115, -104.6], [-91.5, -104.6]],
[[-99.5, -104.6], [-115, -104.6], [-115, 104.6], [-99.5, 104.6]],
[[-94.5, 104.6], [-115, 104.6], [-115, 105.5], [-94.5, 105.5]],
[[-91.4, 105.5], [-115, 105.5], [-115, 115], [-91.4, 115]],
[[77.3, -115], [77.3, -98.6], [115, -98.6], [115, -115]],
[[97.2, -98.6], [97.2, -54.5], [113, -54.5], [113, -98.6]],
[[100.5, -54.5], [100.5, 99.3], [115, 99.3], [115, -54.5]],
[[77, 99.3], [77, 115], [115, 115], [115, 99.3]]
]},
"machine_show_variants": { "default_value": true },
"machine_extruder_count": { "default_value": 2 },
"print_sequence": {"enabled": false},
"extruder_prime_pos_abs": { "default_value": true },
"extruder_prime_pos_x": { "enabled": false },
"extruder_prime_pos_y": { "enabled": false },
"machine_start_gcode": { "default_value": "" },
"machine_end_gcode": { "default_value": "" },
"prime_tower_position_x": { "default_value": 175 },
"prime_tower_position_y": { "default_value": 179 },
"speed_prime_tower": { "default_value": 30 }
}
}

View file

@ -0,0 +1,36 @@
{
"id": "ultimaker3_extended",
"version": 2,
"name": "Ultimaker 3 Extended",
"inherits": "ultimaker3",
"metadata": {
"author": "Ultimaker",
"manufacturer": "Ultimaker",
"category": "Ultimaker",
"quality_definition": "ultimaker3",
"visible": true,
"file_formats": "text/x-gcode",
"platform": "ultimaker3_platform.obj",
"platform_texture": "Ultimaker3Extendedbackplate.png",
"platform_offset": [0, 0, 0],
"has_machine_quality": true,
"has_machine_materials": true,
"has_variant_materials": true,
"has_materials": true,
"has_variants": true,
"preferred_variant": "*aa*",
"variants_name": "Print core",
"machine_extruder_trains":
{
"0": "ultimaker3_extended_extruder_left",
"1": "ultimaker3_extended_extruder_right"
},
"first_start_actions": [ "DiscoverUM3Action" ],
"supported_actions": [ "DiscoverUM3Action" ]
},
"overrides": {
"machine_name": { "default_value": "Ultimaker 3 Extended" },
"machine_height": { "default_value": 300 }
}
}

View file

@ -0,0 +1,30 @@
{
"id": "ultimaker3_extended_extruder_left",
"version": 2,
"name": "Print core 1",
"inherits": "fdmextruder",
"metadata": {
"machine": "ultimaker3_extended",
"position": "0"
},
"overrides": {
"extruder_nr": {
"default_value": 0,
"maximum_value": "1"
},
"machine_nozzle_offset_x": { "default_value": -11.0 },
"machine_nozzle_offset_y": { "default_value": 3.9 },
"machine_extruder_start_pos_abs": { "default_value": true },
"machine_extruder_start_pos_x": { "default_value": 213 },
"machine_extruder_start_pos_y": { "default_value": 207 },
"machine_extruder_end_pos_abs": { "default_value": true },
"machine_extruder_end_pos_x": { "default_value": 213 },
"machine_extruder_end_pos_y": { "default_value": 207 },
"machine_nozzle_head_distance": { "default_value": 2.7 },
"extruder_prime_pos_x": { "default_value": 170, "enabled": false },
"extruder_prime_pos_y": { "default_value": 6, "enabled": false },
"extruder_prime_pos_z": { "default_value": 2, "enabled": false }
}
}

View file

@ -0,0 +1,30 @@
{
"id": "ultimaker3_extended_extruder_right",
"version": 2,
"name": "Print core 2",
"inherits": "fdmextruder",
"metadata": {
"machine": "ultimaker3_extended",
"position": "1"
},
"overrides": {
"extruder_nr": {
"default_value": 1,
"maximum_value": "1"
},
"machine_nozzle_offset_x": { "default_value": 7.0 },
"machine_nozzle_offset_y": { "default_value": 3.9 },
"machine_extruder_start_pos_abs": { "default_value": true },
"machine_extruder_start_pos_x": { "default_value": 213 },
"machine_extruder_start_pos_y": { "default_value": 189 },
"machine_extruder_end_pos_abs": { "default_value": true },
"machine_extruder_end_pos_x": { "default_value": 213 },
"machine_extruder_end_pos_y": { "default_value": 189 },
"machine_nozzle_head_distance": { "default_value": 4.2 },
"extruder_prime_pos_x": { "default_value": 182, "enabled": false },
"extruder_prime_pos_y": { "default_value": 6, "enabled": false },
"extruder_prime_pos_z": { "default_value": 2, "enabled": false }
}
}

View file

@ -0,0 +1,30 @@
{
"id": "ultimaker3_extruder_left",
"version": 2,
"name": "Print core 1",
"inherits": "fdmextruder",
"metadata": {
"machine": "ultimaker3",
"position": "0"
},
"overrides": {
"extruder_nr": {
"default_value": 0,
"maximum_value": "1"
},
"machine_nozzle_offset_x": { "default_value": -11.0 },
"machine_nozzle_offset_y": { "default_value": 3.9 },
"machine_extruder_start_pos_abs": { "default_value": true },
"machine_extruder_start_pos_x": { "default_value": 213 },
"machine_extruder_start_pos_y": { "default_value": 207 },
"machine_extruder_end_pos_abs": { "default_value": true },
"machine_extruder_end_pos_x": { "default_value": 213 },
"machine_extruder_end_pos_y": { "default_value": 207 },
"machine_nozzle_head_distance": { "default_value": 2.7 },
"extruder_prime_pos_x": { "default_value": 170, "enabled": false },
"extruder_prime_pos_y": { "default_value": 6, "enabled": false },
"extruder_prime_pos_z": { "default_value": 2, "enabled": false }
}
}

View file

@ -0,0 +1,30 @@
{
"id": "ultimaker3_extruder_right",
"version": 2,
"name": "Print core 2",
"inherits": "fdmextruder",
"metadata": {
"machine": "ultimaker3",
"position": "1"
},
"overrides": {
"extruder_nr": {
"default_value": 1,
"maximum_value": "1"
},
"machine_nozzle_offset_x": { "default_value": 7.0 },
"machine_nozzle_offset_y": { "default_value": 3.9 },
"machine_extruder_start_pos_abs": { "default_value": true },
"machine_extruder_start_pos_x": { "default_value": 213 },
"machine_extruder_start_pos_y": { "default_value": 189 },
"machine_extruder_end_pos_abs": { "default_value": true },
"machine_extruder_end_pos_x": { "default_value": 213 },
"machine_extruder_end_pos_y": { "default_value": 189 },
"machine_nozzle_head_distance": { "default_value": 4.2 },
"extruder_prime_pos_x": { "default_value": 182, "enabled": false },
"extruder_prime_pos_y": { "default_value": 6, "enabled": false },
"extruder_prime_pos_z": { "default_value": 2, "enabled": false }
}
}

View file

@ -2295,25 +2295,6 @@ msgid ""
"Click to open the profile manager."
msgstr "Einige Einstellungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n\nKlicken Sie, um den Profilmanager zu öffnen."
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:24
msgid "Modify G-Code"
msgstr "G-Code ändern"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:12
msgctxt "@label"
msgid "Post Processing"
msgstr "Nachbearbeitung"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:16
msgctxt "Description of plugin"
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."
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
msgctxt "@title:window"
msgid "Post Processing Plugin"
msgstr "Plugin Nachbearbeitung"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:49
msgctxt "@label"
msgid "Post Processing Scripts"
@ -2333,3 +2314,318 @@ msgstr "Einstellungen"
msgctxt "@info:tooltip"
msgid "Change active post-processing scripts"
msgstr "Aktive Skripts Nachbearbeitung ändern"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/__init__.py:13
msgctxt "@info:whatsthis"
msgid "Manages network connections to Ultimaker 3 printers"
msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker 3 Druckern"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:100
msgctxt "@action:button"
msgid "Print over network"
msgstr "Drücken über Netzwerk"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:101
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Drücken über Netzwerk"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:143
msgctxt "@info:status"
msgid ""
"Access to the printer requested. Please approve the request on the printer"
msgstr "Zugriff auf Drucker erforderlich. Bestätigen Sie den Zugriff auf den Drucker"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:144
msgctxt "@info:status"
msgid ""
msgstr ""
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@action:button"
msgid "Retry"
msgstr "Erneut versuchen"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@info:tooltip"
msgid "Re-send the access request"
msgstr "Zugriffanforderung erneut senden"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:147
msgctxt "@info:status"
msgid "Access to the printer accepted"
msgstr "Zugriff auf den Drucker genehmigt"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:148
msgctxt "@info:status"
msgid "No access to print with this printer. Unable to send print job."
msgstr "Kein Zugriff auf das Drucken mit diesem Drucker. Druckauftrag kann nicht gesendet werden."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72
msgctxt "@action:button"
msgid "Request Access"
msgstr "Zugriff anfordern"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:27
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:71
msgctxt "@info:tooltip"
msgid "Send access request to the printer"
msgstr "Zugriffsanforderung für den Drucker senden"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:232
#, python-brace-format
msgctxt "@info:status"
msgid ""
"Connected over the network to {0}. Please approve the access request on the "
"printer."
msgstr "Über Netzwerk verbunden mit {0}. Geben Sie die Zugriffsanforderung für den Drucker frei."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:239
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}."
msgstr "Über Netzwerk verbunden mit {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:252
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}. No access to control the printer."
msgstr "Über Netzwerk verbunden mit {0}. Kein Zugriff auf die Druckerverwaltung."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:257
msgctxt "@info:status"
msgid "Access request was denied on the printer."
msgstr "Zugriffsanforderung auf den Drucker wurde abgelehnt."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:260
msgctxt "@info:status"
msgid "Access request failed due to a timeout."
msgstr "Zugriffsanforderungen aufgrund von Zeitüberschreitung fehlgeschlagen."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:323
msgctxt "@info:status"
msgid "The connection with the network was lost."
msgstr "Die Verbindung zum Netzwerk ist verlorengegangen."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:354
msgctxt "@info:status"
msgid ""
"The connection with the printer was lost. Check your printer to see if it is "
"connected."
msgstr "Die Verbindung zum Drucker ist verlorengegangen. Überprüfen Sie Ihren Drucker, um festzustellen, ob er verbunden ist."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:466
msgctxt "@info:status"
msgid ""
"Unable to start a new print job because the printer is busy. Please check "
"the printer."
msgstr "Es kann kein neuer Druckauftrag gestartet werden, da der Drucker beschäftigt ist. Überprüfen Sie den Drucker."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:471
#, python-format
msgctxt "@info:status"
msgid ""
"Unable to start a new print job, printer is busy. Current printer status is "
"%s."
msgstr "Es kann kein neuer Druckauftrag gestartet werden, da der Drucker beschäftigt ist. Der aktuelle Druckerstatus lautet %s."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:491
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
msgstr "Es kann kein neuer Druckauftrag gestartet werden. Kein PrinterCore in Steckplatz {0} geladen."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:498
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No material loaded in slot {0}"
msgstr "Es kann kein neuer Druckauftrag gestartet werden. Kein Material in Steckplatz {0} geladen."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:509
#, python-brace-format
msgctxt "@label"
msgid "Not enough material for spool {0}."
msgstr "Material für Spule {0} unzureichend."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:519
#, python-brace-format
msgctxt "@label"
msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Abweichender PrintCore (Cura: {0}, Drucker: {1}) für Extruder {2} gewählt"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:533
#, python-brace-format
msgctxt "@label"
msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Abweichendes Material (Cura: {0}, Drucker: {1}) für Extruder {2} gewählt"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:536
msgctxt "@label"
msgid "Are you sure you wish to print with the selected configuration?"
msgstr "Möchten Sie wirklich mit der gewählten Konfiguration drucken?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:537
msgctxt "@label"
msgid ""
"There is a mismatch between the configuration of the printer and Cura. For "
"the best result, always slice for the PrintCores and materials that are "
"inserted in your printer."
msgstr "Anforderungen zwischen der Druckerkonfiguration und Cura stimmen nicht überein. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:543
msgctxt "@window:title"
msgid "Mismatched configuration"
msgstr "Konfiguration nicht übereinstimmend"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:633
msgctxt "@info:status"
msgid "Sending data to printer"
msgstr "Daten werden zum Drucker gesendet"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:680
msgctxt "@info:status"
msgid "Unable to send data to printer. Is another job still active?"
msgstr "Daten können nicht zum Drucker gesendet werden. Ist noch ein weiterer Auftrag in Bearbeitung?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:804
msgctxt "@label:MonitorStatus"
msgid "Print aborted. Please check the printer"
msgstr "Drucken wurde abgebrochen. Den Drucker überprüfen"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:810
msgctxt "@label:MonitorStatus"
msgid "Pausing print..."
msgstr "Drucken wird pausiert..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:812
msgctxt "@label:MonitorStatus"
msgid "Resuming print..."
msgstr "Drucken wird fortgesetzt..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:920
msgctxt "@window:title"
msgid "Changes on the Printer"
msgstr "Änderungen auf dem Drucker"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:922
msgctxt "@label"
msgid ""
"Do you want to change the PrintCores and materials in Cura to match your "
"printer?"
msgstr "Möchten Sie die PrintCores und Materialien in Cura passend für Ihren Drucker ändern?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:924
msgctxt "@label"
msgid ""
"The PrintCores and/or materials on your printer were changed. For the best "
"result, always slice for the PrintCores and materials that are inserted in "
"your printer."
msgstr "Die PrintCores und/oder Materialien auf Ihrem Drucker wurden geändert. Für optimale Ergebnisse schneiden Sie stets für die PrintCores und Materialien, die in Ihren Drucker eingelegt wurden."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:19
msgctxt "@action"
msgid "Connect via Network"
msgstr "Anschluss über Netzwerk"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57
msgctxt "@title:window"
msgid "Connect to Networked Printer"
msgstr "Anschluss an vernetzten Drucker"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:67
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.\n"
"\n"
"Select your printer from the list below:"
msgstr "Um über das Netzwerk direkt auf Ihrem Drucker zu drucken, stellen Sie bitte sicher, dass der Drucker mit dem Netzwerkkabel verbunden ist oder verbinden Sie Ihren Drucker mit Ihrem WLAN-Netzwerk. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie dennoch ein USB-Laufwerk für die Übertragung von G-Code-Dateien auf Ihren Drucker verwenden.\n\nWählen Sie Ihren Drucker aus der folgenden Liste:"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106
msgctxt "@action:button"
msgid "Refresh"
msgstr "Aktualisieren"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:198
msgctxt "@label"
msgid ""
"If your printer is not listed, read the <a href='%1'>network-printing "
"troubleshooting guide</a>"
msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die <a href=%1>Anleitung für Fehlerbehebung für Netzwerkdruck</a>"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:225
msgctxt "@label"
msgid "Type"
msgstr "Typ"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3"
msgstr "Ultimaker 3"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3 Extended"
msgstr "Ultimaker 3 Extended"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:237
msgctxt "@label"
msgid "Firmware version"
msgstr "Firmware-Version"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:249
msgctxt "@label"
msgid "Address"
msgstr "Adresse"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:263
msgctxt "@label"
msgid "The printer at this address has not yet responded."
msgstr "Der Drucker unter dieser Adresse hat nicht reagiert."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:268
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38
msgctxt "@action:button"
msgid "Connect"
msgstr "Verbinden"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:280
msgctxt "@label:"
msgid "Print Again"
msgstr "Erneut drucken"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:289
msgctxt "@title:window"
msgid "Printer Address"
msgstr "Druckeradresse"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:319
msgctxt "@alabel"
msgid "Enter the IP address or hostname of your printer on the network."
msgstr "Geben Sie die IP-Adresse oder den Hostnamen Ihres Druckers auf dem Netzwerk ein."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:346
msgctxt "@action:button"
msgid "Ok"
msgstr "Ok"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:37
msgctxt "@info:tooltip"
msgid "Connect to a printer"
msgstr "Mit einem Drucker verbinden"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:116
msgctxt "@info:tooltip"
msgid "Load the configuration of the printer into Cura"
msgstr "Die Druckerkonfiguration in Cura laden"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117
msgctxt "@action:button"
msgid "Activate Configuration"
msgstr "Konfiguration aktivieren"

View file

@ -535,7 +535,7 @@ msgid ""
"The selected material is imcompatible with the selected machine or "
"configuration."
msgstr ""
"The selected material is imcompatible with the selected machine or "
"The selected material is incompatible with the selected machine or "
"configuration."
#: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:666
@ -2387,3 +2387,37 @@ msgstr ""
"Some setting values are different from the values stored in the profile.\n"
"\n"
"Click to open the profile manager."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:519
#, python-brace-format
msgctxt "@label"
msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
msgstr "Unable to start a new print job. No print core loaded in slot {0}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:537
msgctxt "@label"
msgid ""
"There is a mismatch between the configuration of the printer and Cura. For "
"the best result, always slice for the PrintCores and materials that are "
"inserted in your printer."
msgstr "There is a mismatch between the configuration of the printer and Cura. For the best result, always slice for the print cores and materials that are inserted in your printer."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:922
msgctxt "@label"
msgid ""
"Do you want to change the PrintCores and materials in Cura to match your "
"printer?"
msgstr "Would you like to update your current printer configuration into Cura?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:924
msgctxt "@label"
msgid ""
"The PrintCores and/or materials on your printer were changed. For the best "
"result, always slice for the PrintCores and materials that are inserted in "
"your printer."
msgstr "The print cores and/or materials on your printer were changed. For the best result, always slice for the print cores and materials that are inserted in your printer."

View file

@ -2295,25 +2295,6 @@ msgid ""
"Click to open the profile manager."
msgstr "Algunos valores son distintos de los valores almacenados en el perfil.\n\nHaga clic para abrir el administrador de perfiles."
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:24
msgid "Modify G-Code"
msgstr "Modificar GCode"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:12
msgctxt "@label"
msgid "Post Processing"
msgstr "Posprocesamiento"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:16
msgctxt "Description of plugin"
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."
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
msgctxt "@title:window"
msgid "Post Processing Plugin"
msgstr "Complemento de posprocesamiento"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:49
msgctxt "@label"
msgid "Post Processing Scripts"
@ -2333,3 +2314,318 @@ msgstr "Ajustes"
msgctxt "@info:tooltip"
msgid "Change active post-processing scripts"
msgstr "Cambia las secuencias de comandos de posprocesamiento."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/__init__.py:13
msgctxt "@info:whatsthis"
msgid "Manages network connections to Ultimaker 3 printers"
msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:100
msgctxt "@action:button"
msgid "Print over network"
msgstr "Imprimir a través de la red"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:101
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Imprime a través de la red."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:143
msgctxt "@info:status"
msgid ""
"Access to the printer requested. Please approve the request on the printer"
msgstr "Acceso a la impresora solicitado. Apruebe la solicitud en la impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:144
msgctxt "@info:status"
msgid ""
msgstr ""
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@action:button"
msgid "Retry"
msgstr "Volver a intentar"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@info:tooltip"
msgid "Re-send the access request"
msgstr "Reenvía la solicitud de acceso."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:147
msgctxt "@info:status"
msgid "Access to the printer accepted"
msgstr "Acceso a la impresora aceptado"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:148
msgctxt "@info:status"
msgid "No access to print with this printer. Unable to send print job."
msgstr "No hay acceso para imprimir con esta impresora. No se puede enviar el trabajo de impresión."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72
msgctxt "@action:button"
msgid "Request Access"
msgstr "Solicitar acceso"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:27
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:71
msgctxt "@info:tooltip"
msgid "Send access request to the printer"
msgstr "Envía la solicitud de acceso a la impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:232
#, python-brace-format
msgctxt "@info:status"
msgid ""
"Connected over the network to {0}. Please approve the access request on the "
"printer."
msgstr "Conectado a través de la red a {0}. Apruebe la solicitud de acceso en la impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:239
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}."
msgstr "Conectado a través de la red a {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:252
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}. No access to control the printer."
msgstr "Conectado a través de la red a {0}. No hay acceso para controlar la impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:257
msgctxt "@info:status"
msgid "Access request was denied on the printer."
msgstr "Solicitud de acceso denegada en la impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:260
msgctxt "@info:status"
msgid "Access request failed due to a timeout."
msgstr "Se ha producido un error al solicitar acceso porque se ha agotado el tiempo de espera."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:323
msgctxt "@info:status"
msgid "The connection with the network was lost."
msgstr "Se ha perdido la conexión de red."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:354
msgctxt "@info:status"
msgid ""
"The connection with the printer was lost. Check your printer to see if it is "
"connected."
msgstr "Se ha perdido la conexión con la impresora. Compruebe que la impresora está conectada."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:466
msgctxt "@info:status"
msgid ""
"Unable to start a new print job because the printer is busy. Please check "
"the printer."
msgstr "No se puede iniciar un trabajo nuevo de impresión porque la impresora está ocupada. Compruebe la impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:471
#, python-format
msgctxt "@info:status"
msgid ""
"Unable to start a new print job, printer is busy. Current printer status is "
"%s."
msgstr "No se puede iniciar un trabajo nuevo de impresión, la impresora está ocupada. El estado actual de la impresora es %s."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:491
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:498
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No material loaded in slot {0}"
msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado material en la ranura {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:509
#, python-brace-format
msgctxt "@label"
msgid "Not enough material for spool {0}."
msgstr "No hay suficiente material para la bobina {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:519
#, python-brace-format
msgctxt "@label"
msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "PrintCore distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:533
#, python-brace-format
msgctxt "@label"
msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Material distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:536
msgctxt "@label"
msgid "Are you sure you wish to print with the selected configuration?"
msgstr "¿Seguro que desea imprimir con la configuración seleccionada?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:537
msgctxt "@label"
msgid ""
"There is a mismatch between the configuration of the printer and Cura. For "
"the best result, always slice for the PrintCores and materials that are "
"inserted in your printer."
msgstr "La configuración de la impresora y de Cura no coinciden. Para obtener el mejor resultado, segmente siempre los PrintCores y materiales que se insertan en la impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:543
msgctxt "@window:title"
msgid "Mismatched configuration"
msgstr "Configuración desajustada"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:633
msgctxt "@info:status"
msgid "Sending data to printer"
msgstr "Enviando datos a la impresora"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:680
msgctxt "@info:status"
msgid "Unable to send data to printer. Is another job still active?"
msgstr "No se puede enviar datos a la impresora. ¿Hay otro trabajo que todavía esté activo?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:804
msgctxt "@label:MonitorStatus"
msgid "Print aborted. Please check the printer"
msgstr "Impresión cancelada. Compruebe la impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:810
msgctxt "@label:MonitorStatus"
msgid "Pausing print..."
msgstr "Pausando impresión..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:812
msgctxt "@label:MonitorStatus"
msgid "Resuming print..."
msgstr "Reanudando impresión..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:920
msgctxt "@window:title"
msgid "Changes on the Printer"
msgstr "Cambios en la impresora"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:922
msgctxt "@label"
msgid ""
"Do you want to change the PrintCores and materials in Cura to match your "
"printer?"
msgstr "¿Desea cambiar los PrintCores y materiales de Cura para que coincidan con la impresora?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:924
msgctxt "@label"
msgid ""
"The PrintCores and/or materials on your printer were changed. For the best "
"result, always slice for the PrintCores and materials that are inserted in "
"your printer."
msgstr "Se han modificado los PrintCores y/o materiales de la impresora. Para obtener el mejor resultado, segmente siempre los PrintCores y materiales que se han insertado en la impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:19
msgctxt "@action"
msgid "Connect via Network"
msgstr "Conectar a través de la red"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57
msgctxt "@title:window"
msgid "Connect to Networked Printer"
msgstr "Conectar con la impresora en red"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:67
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.\n"
"\n"
"Select your printer from the list below:"
msgstr "Para imprimir directamente en la impresora a través de la red, asegúrese de que esta está conectada a la red utilizando 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.\n\nSeleccione la impresora de la siguiente lista:"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106
msgctxt "@action:button"
msgid "Refresh"
msgstr "Actualizar"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:198
msgctxt "@label"
msgid ""
"If your printer is not listed, read the <a href='%1'>network-printing "
"troubleshooting guide</a>"
msgstr "Si la impresora no aparece en la lista, lea la <a href='%1'>guía de solución de problemas de impresión y red</a>"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:225
msgctxt "@label"
msgid "Type"
msgstr "Tipo"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3"
msgstr "Ultimaker 3"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3 Extended"
msgstr "Ultimaker 3 Extended"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:237
msgctxt "@label"
msgid "Firmware version"
msgstr "Versión de firmware"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:249
msgctxt "@label"
msgid "Address"
msgstr "Dirección"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:263
msgctxt "@label"
msgid "The printer at this address has not yet responded."
msgstr "La impresora todavía no ha respondido en esta dirección."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:268
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38
msgctxt "@action:button"
msgid "Connect"
msgstr "Conectar"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:280
msgctxt "@label:"
msgid "Print Again"
msgstr "Volver a imprimir"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:289
msgctxt "@title:window"
msgid "Printer Address"
msgstr "Dirección de la impresora"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:319
msgctxt "@alabel"
msgid "Enter the IP address or hostname of your printer on the network."
msgstr "Introduzca la dirección IP o el nombre de host de la impresora en red."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:346
msgctxt "@action:button"
msgid "Ok"
msgstr "Aceptar"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:37
msgctxt "@info:tooltip"
msgid "Connect to a printer"
msgstr "Conecta a una impresora."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:116
msgctxt "@info:tooltip"
msgid "Load the configuration of the printer into Cura"
msgstr "Carga la configuración de la impresora en Cura."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117
msgctxt "@action:button"
msgid "Activate Configuration"
msgstr "Activar configuración"

View file

@ -2295,25 +2295,6 @@ msgid ""
"Click to open the profile manager."
msgstr "Jotkut asetusten arvot eroavat profiiliin tallennetuista arvoista.\n\nAvaa profiilin hallinta napsauttamalla."
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:24
msgid "Modify G-Code"
msgstr "Muokkaa GCode-arvoa"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:12
msgctxt "@label"
msgid "Post Processing"
msgstr "Jälkikäsittely"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:16
msgctxt "Description of plugin"
msgid "Extension that allows for user created scripts for post processing"
msgstr "Lisäosa, jonka avulla käyttäjät voivat luoda komentosarjoja jälkikäsittelyä varten"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
msgctxt "@title:window"
msgid "Post Processing Plugin"
msgstr "Jälkikäsittelylisäosa"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:49
msgctxt "@label"
msgid "Post Processing Scripts"
@ -2333,3 +2314,318 @@ msgstr "Asetukset"
msgctxt "@info:tooltip"
msgid "Change active post-processing scripts"
msgstr "Muuta aktiivisia jälkikäsittelykomentosarjoja"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/__init__.py:13
msgctxt "@info:whatsthis"
msgid "Manages network connections to Ultimaker 3 printers"
msgstr "Ultimaker 3 -tulostimien verkkoyhteyksien hallinta"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:100
msgctxt "@action:button"
msgid "Print over network"
msgstr "Tulosta verkon kautta"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:101
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Tulosta verkon kautta"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:143
msgctxt "@info:status"
msgid ""
"Access to the printer requested. Please approve the request on the printer"
msgstr "Tulostimen käyttöoikeutta pyydetty. Hyväksy tulostimen pyyntö"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:144
msgctxt "@info:status"
msgid ""
msgstr ""
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@action:button"
msgid "Retry"
msgstr "Yritä uudelleen"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@info:tooltip"
msgid "Re-send the access request"
msgstr "Lähetä käyttöoikeuspyyntö uudelleen"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:147
msgctxt "@info:status"
msgid "Access to the printer accepted"
msgstr "Tulostimen käyttöoikeus hyväksytty"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:148
msgctxt "@info:status"
msgid "No access to print with this printer. Unable to send print job."
msgstr "Tällä tulostimella tulostukseen ei ole käyttöoikeutta. Tulostustyön lähetys ei onnistu."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72
msgctxt "@action:button"
msgid "Request Access"
msgstr "Pyydä käyttöoikeutta"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:27
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:71
msgctxt "@info:tooltip"
msgid "Send access request to the printer"
msgstr "Lähetä tulostimen käyttöoikeuspyyntö"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:232
#, python-brace-format
msgctxt "@info:status"
msgid ""
"Connected over the network to {0}. Please approve the access request on the "
"printer."
msgstr "Yhdistetty verkon kautta tulostimeen {0}. Hyväksy tulostimen käyttöoikeuspyyntö."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:239
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}."
msgstr "Yhdistetty verkon kautta tulostimeen {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:252
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}. No access to control the printer."
msgstr "Yhdistetty verkon kautta tulostimeen {0}. Ei käyttöoikeutta tulostimen hallintaan."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:257
msgctxt "@info:status"
msgid "Access request was denied on the printer."
msgstr "Tulostimen käyttöoikeuspyyntö hylättiin."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:260
msgctxt "@info:status"
msgid "Access request failed due to a timeout."
msgstr "Käyttöoikeuspyyntö epäonnistui aikakatkaisun vuoksi."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:323
msgctxt "@info:status"
msgid "The connection with the network was lost."
msgstr "Yhteys verkkoon menetettiin."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:354
msgctxt "@info:status"
msgid ""
"The connection with the printer was lost. Check your printer to see if it is "
"connected."
msgstr "Yhteys tulostimeen menetettiin. Tarkista, onko tulostin yhdistetty."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:466
msgctxt "@info:status"
msgid ""
"Unable to start a new print job because the printer is busy. Please check "
"the printer."
msgstr "Uuden tulostustyön aloittaminen ei onnistu, koska tulostin on varattu. Tarkista tulostin."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:471
#, python-format
msgctxt "@info:status"
msgid ""
"Unable to start a new print job, printer is busy. Current printer status is "
"%s."
msgstr "Uuden tulostustyön aloittaminen ei onnistu, koska tulostin on varattu. Nykyinen tulostimen tila on %s."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:491
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
msgstr "Uuden tulostustyön aloittaminen ei onnistu. PrinterCorea ei ole ladattu aukkoon {0}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:498
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No material loaded in slot {0}"
msgstr "Uuden tulostustyön aloittaminen ei onnistu. Materiaalia ei ole ladattu aukkoon {0}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:509
#, python-brace-format
msgctxt "@label"
msgid "Not enough material for spool {0}."
msgstr "Kelalle {0} ei ole tarpeeksi materiaalia."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:519
#, python-brace-format
msgctxt "@label"
msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Eri PrintCore (Cura: {0}, tulostin: {1}) valittu suulakkeelle {2}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:533
#, python-brace-format
msgctxt "@label"
msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Eri materiaali (Cura: {0}, tulostin: {1}) valittu suulakkeelle {2}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:536
msgctxt "@label"
msgid "Are you sure you wish to print with the selected configuration?"
msgstr "Haluatko varmasti tulostaa valitulla määrityksellä?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:537
msgctxt "@label"
msgid ""
"There is a mismatch between the configuration of the printer and Cura. For "
"the best result, always slice for the PrintCores and materials that are "
"inserted in your printer."
msgstr "Tulostimen ja Curan määrityksen välillä on ristiriita. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:543
msgctxt "@window:title"
msgid "Mismatched configuration"
msgstr "Ristiriitainen määritys"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:633
msgctxt "@info:status"
msgid "Sending data to printer"
msgstr "Lähetetään tietoja tulostimeen"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:680
msgctxt "@info:status"
msgid "Unable to send data to printer. Is another job still active?"
msgstr "Tietojen lähetys tulostimeen ei onnistu. Onko toinen työ yhä aktiivinen?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:804
msgctxt "@label:MonitorStatus"
msgid "Print aborted. Please check the printer"
msgstr "Tulostus keskeytetty. Tarkista tulostin"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:810
msgctxt "@label:MonitorStatus"
msgid "Pausing print..."
msgstr "Tulostus pysäytetään..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:812
msgctxt "@label:MonitorStatus"
msgid "Resuming print..."
msgstr "Tulostusta jatketaan..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:920
msgctxt "@window:title"
msgid "Changes on the Printer"
msgstr "Tulostimen muutokset"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:922
msgctxt "@label"
msgid ""
"Do you want to change the PrintCores and materials in Cura to match your "
"printer?"
msgstr "Haluatko muuttaa Curan PrintCoret ja materiaalit vastaamaan tulostinta?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:924
msgctxt "@label"
msgid ""
"The PrintCores and/or materials on your printer were changed. For the best "
"result, always slice for the PrintCores and materials that are inserted in "
"your printer."
msgstr "Tulostimen PrintCoreja ja/tai materiaaleja muutettiin. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:19
msgctxt "@action"
msgid "Connect via Network"
msgstr "Yhdistä verkon kautta"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57
msgctxt "@title:window"
msgid "Connect to Networked Printer"
msgstr "Yhdistä verkkotulostimeen"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:67
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.\n"
"\n"
"Select your printer from the list below:"
msgstr "Tulosta suoraan tulostimeen verkon kautta yhdistämällä tulostin verkkoon verkkokaapelilla tai yhdistämällä tulostin Wi-Fi-verkkoon. Jos Curaa ei yhdistetä tulostimeen, GCode-tiedostot voidaan silti siirtää tulostimeen USB-aseman avulla.\n\nValitse tulostin alla olevasta luettelosta:"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106
msgctxt "@action:button"
msgid "Refresh"
msgstr "Päivitä"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:198
msgctxt "@label"
msgid ""
"If your printer is not listed, read the <a href='%1'>network-printing "
"troubleshooting guide</a>"
msgstr "Jos tulostinta ei ole luettelossa, lue <a href='%1'>verkkotulostuksen vianetsintäopas</a>"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:225
msgctxt "@label"
msgid "Type"
msgstr "Tyyppi"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3"
msgstr "Ultimaker 3"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3 Extended"
msgstr "Ultimaker 3 Extended"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:237
msgctxt "@label"
msgid "Firmware version"
msgstr "Laiteohjelmistoversio"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:249
msgctxt "@label"
msgid "Address"
msgstr "Osoite"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:263
msgctxt "@label"
msgid "The printer at this address has not yet responded."
msgstr "Tämän osoitteen tulostin ei ole vielä vastannut."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:268
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38
msgctxt "@action:button"
msgid "Connect"
msgstr "Yhdistä"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:280
msgctxt "@label:"
msgid "Print Again"
msgstr "Tulosta uudelleen"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:289
msgctxt "@title:window"
msgid "Printer Address"
msgstr "Tulostimen osoite"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:319
msgctxt "@alabel"
msgid "Enter the IP address or hostname of your printer on the network."
msgstr "Anna verkon tulostimen IP-osoite tai isäntänimi."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:346
msgctxt "@action:button"
msgid "Ok"
msgstr "OK"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:37
msgctxt "@info:tooltip"
msgid "Connect to a printer"
msgstr "Yhdistä tulostimeen"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:116
msgctxt "@info:tooltip"
msgid "Load the configuration of the printer into Cura"
msgstr "Lataa tulostimen määritys Curaan"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117
msgctxt "@action:button"
msgid "Activate Configuration"
msgstr "Aktivoi määritys"

View file

@ -2295,25 +2295,6 @@ msgid ""
"Click to open the profile manager."
msgstr "Certaines valeurs de paramètre sont différentes des valeurs enregistrées dans le profil.\n\nCliquez pour ouvrir le gestionnaire de profils."
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:24
msgid "Modify G-Code"
msgstr "Modifier le G-Code"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:12
msgctxt "@label"
msgid "Post Processing"
msgstr "Post-traitement"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:16
msgctxt "Description of plugin"
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"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
msgctxt "@title:window"
msgid "Post Processing Plugin"
msgstr "Plug-in de post-traitement"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:49
msgctxt "@label"
msgid "Post Processing Scripts"
@ -2333,3 +2314,318 @@ msgstr "Paramètres"
msgctxt "@info:tooltip"
msgid "Change active post-processing scripts"
msgstr "Modifier les scripts de post-traitement actifs"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/__init__.py:13
msgctxt "@info:whatsthis"
msgid "Manages network connections to Ultimaker 3 printers"
msgstr "Gère les connexions réseau vers les imprimantes Ultimaker 3"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:100
msgctxt "@action:button"
msgid "Print over network"
msgstr "Imprimer sur le réseau"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:101
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Imprimer sur le réseau"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:143
msgctxt "@info:status"
msgid ""
"Access to the printer requested. Please approve the request on the printer"
msgstr "Accès à l'imprimante demandé. Veuillez approuver la demande sur l'imprimante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:144
msgctxt "@info:status"
msgid ""
msgstr ""
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@action:button"
msgid "Retry"
msgstr "Réessayer"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@info:tooltip"
msgid "Re-send the access request"
msgstr "Renvoyer la demande d'accès"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:147
msgctxt "@info:status"
msgid "Access to the printer accepted"
msgstr "Accès à l'imprimante accepté"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:148
msgctxt "@info:status"
msgid "No access to print with this printer. Unable to send print job."
msgstr "Aucun accès pour imprimer avec cette imprimante. Impossible d'envoyer la tâche d'impression."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72
msgctxt "@action:button"
msgid "Request Access"
msgstr "Demande d'accès"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:27
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:71
msgctxt "@info:tooltip"
msgid "Send access request to the printer"
msgstr "Envoyer la demande d'accès à l'imprimante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:232
#, python-brace-format
msgctxt "@info:status"
msgid ""
"Connected over the network to {0}. Please approve the access request on the "
"printer."
msgstr "Connecté sur le réseau à {0}. Veuillez approuver la demande d'accès sur l'imprimante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:239
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}."
msgstr "Connecté sur le réseau à {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:252
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}. No access to control the printer."
msgstr "Connecté sur le réseau à {0}. Pas d'accès pour commander l'imprimante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:257
msgctxt "@info:status"
msgid "Access request was denied on the printer."
msgstr "La demande d'accès a été refusée sur l'imprimante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:260
msgctxt "@info:status"
msgid "Access request failed due to a timeout."
msgstr "Échec de la demande d'accès à cause de la durée limite."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:323
msgctxt "@info:status"
msgid "The connection with the network was lost."
msgstr "La connexion avec le réseau a été perdue."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:354
msgctxt "@info:status"
msgid ""
"The connection with the printer was lost. Check your printer to see if it is "
"connected."
msgstr "La connexion avec l'imprimante a été perdue. Vérifiez que votre imprimante est connectée."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:466
msgctxt "@info:status"
msgid ""
"Unable to start a new print job because the printer is busy. Please check "
"the printer."
msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Vérifiez l'imprimante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:471
#, python-format
msgctxt "@info:status"
msgid ""
"Unable to start a new print job, printer is busy. Current printer status is "
"%s."
msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. L'état actuel de l'imprimante est %s."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:491
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Pas de PrinterCore inséré dans la fente {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:498
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No material loaded in slot {0}"
msgstr "Impossible de démarrer une nouvelle tâche d'impression car l'imprimante est occupée. Pas de matériau chargé dans la fente {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:509
#, python-brace-format
msgctxt "@label"
msgid "Not enough material for spool {0}."
msgstr "Pas suffisamment de matériau pour bobine {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:519
#, python-brace-format
msgctxt "@label"
msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "PrintCore différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:533
#, python-brace-format
msgctxt "@label"
msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Matériau différent (Cura : {0}, Imprimante : {1}) sélectionné pour l'extrudeuse {2}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:536
msgctxt "@label"
msgid "Are you sure you wish to print with the selected configuration?"
msgstr "Êtes-vous sûr(e) de vouloir imprimer avec la configuration sélectionnée ?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:537
msgctxt "@label"
msgid ""
"There is a mismatch between the configuration of the printer and Cura. For "
"the best result, always slice for the PrintCores and materials that are "
"inserted in your printer."
msgstr "Problème de compatibilité entre la configuration de l'imprimante et Cura. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:543
msgctxt "@window:title"
msgid "Mismatched configuration"
msgstr "Configuration différente"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:633
msgctxt "@info:status"
msgid "Sending data to printer"
msgstr "Envoi des données à l'imprimante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:680
msgctxt "@info:status"
msgid "Unable to send data to printer. Is another job still active?"
msgstr "Impossible d'envoyer les données à l'imprimante. Une autre tâche est-elle toujours active ?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:804
msgctxt "@label:MonitorStatus"
msgid "Print aborted. Please check the printer"
msgstr "Abandon de l'impression. Vérifiez l'imprimante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:810
msgctxt "@label:MonitorStatus"
msgid "Pausing print..."
msgstr "Mise en pause de l'impression..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:812
msgctxt "@label:MonitorStatus"
msgid "Resuming print..."
msgstr "Reprise de l'impression..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:920
msgctxt "@window:title"
msgid "Changes on the Printer"
msgstr "Modifications sur l'imprimante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:922
msgctxt "@label"
msgid ""
"Do you want to change the PrintCores and materials in Cura to match your "
"printer?"
msgstr "Voulez-vous modifier les PrintCores et matériaux dans Cura pour correspondre à votre imprimante ?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:924
msgctxt "@label"
msgid ""
"The PrintCores and/or materials on your printer were changed. For the best "
"result, always slice for the PrintCores and materials that are inserted in "
"your printer."
msgstr "Les PrintCores et/ou matériaux sur votre imprimante ont été modifiés. Pour un résultat optimal, découpez toujours pour les PrintCores et matériaux insérés dans votre imprimante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:19
msgctxt "@action"
msgid "Connect via Network"
msgstr "Connecter via le réseau"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57
msgctxt "@title:window"
msgid "Connect to Networked Printer"
msgstr "Connecter à l'imprimante en réseau"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:67
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.\n"
"\n"
"Select your printer from the list below:"
msgstr "Pour imprimer directement sur votre imprimante sur le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble réseau 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.\n\nSélectionnez votre imprimante dans la liste ci-dessous :"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106
msgctxt "@action:button"
msgid "Refresh"
msgstr "Rafraîchir"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:198
msgctxt "@label"
msgid ""
"If your printer is not listed, read the <a href='%1'>network-printing "
"troubleshooting guide</a>"
msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le <a href='%1'>guide de dépannage de l'impression en réseau</a>"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:225
msgctxt "@label"
msgid "Type"
msgstr "Type"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3"
msgstr "Ultimaker 3"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3 Extended"
msgstr "Ultimaker 3 Extended"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:237
msgctxt "@label"
msgid "Firmware version"
msgstr "Version du firmware"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:249
msgctxt "@label"
msgid "Address"
msgstr "Adresse"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:263
msgctxt "@label"
msgid "The printer at this address has not yet responded."
msgstr "L'imprimante à cette adresse n'a pas encore répondu."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:268
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38
msgctxt "@action:button"
msgid "Connect"
msgstr "Connecter"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:280
msgctxt "@label:"
msgid "Print Again"
msgstr "Imprimer à nouveau"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:289
msgctxt "@title:window"
msgid "Printer Address"
msgstr "Adresse de l'imprimante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:319
msgctxt "@alabel"
msgid "Enter the IP address or hostname of your printer on the network."
msgstr "Saisissez l'adresse IP ou le nom d'hôte de votre imprimante sur le réseau."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:346
msgctxt "@action:button"
msgid "Ok"
msgstr "Ok"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:37
msgctxt "@info:tooltip"
msgid "Connect to a printer"
msgstr "Connecter à une imprimante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:116
msgctxt "@info:tooltip"
msgid "Load the configuration of the printer into Cura"
msgstr "Charger la configuration de l'imprimante dans Cura"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117
msgctxt "@action:button"
msgid "Activate Configuration"
msgstr "Activer la configuration"

View file

@ -2295,25 +2295,6 @@ msgid ""
"Click to open the profile manager."
msgstr "Alcuni valori di impostazione sono diversi dai valori memorizzati nel profilo.\n\nFare clic per aprire la gestione profili."
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:24
msgid "Modify G-Code"
msgstr "Modifica il codice G"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:12
msgctxt "@label"
msgid "Post Processing"
msgstr "Post-elaborazione"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:16
msgctxt "Description of plugin"
msgid "Extension that allows for user created scripts for post processing"
msgstr "Estensione che consente la post-elaborazione degli script creati da utente"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
msgctxt "@title:window"
msgid "Post Processing Plugin"
msgstr "Plug-in di post-elaborazione"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:49
msgctxt "@label"
msgid "Post Processing Scripts"
@ -2333,3 +2314,318 @@ msgstr "Impostazioni"
msgctxt "@info:tooltip"
msgid "Change active post-processing scripts"
msgstr "Modifica script di post-elaborazione attivi"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/__init__.py:13
msgctxt "@info:whatsthis"
msgid "Manages network connections to Ultimaker 3 printers"
msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:100
msgctxt "@action:button"
msgid "Print over network"
msgstr "Stampa sulla rete"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:101
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Stampa sulla rete"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:143
msgctxt "@info:status"
msgid ""
"Access to the printer requested. Please approve the request on the printer"
msgstr "Richiesto accesso alla stampante. Approvare la richiesta sulla stampante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:144
msgctxt "@info:status"
msgid ""
msgstr ""
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@action:button"
msgid "Retry"
msgstr "Riprova"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@info:tooltip"
msgid "Re-send the access request"
msgstr "Invia nuovamente la richiesta di accesso"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:147
msgctxt "@info:status"
msgid "Access to the printer accepted"
msgstr "Accesso alla stampante accettato"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:148
msgctxt "@info:status"
msgid "No access to print with this printer. Unable to send print job."
msgstr "Nessun accesso per stampare con questa stampante. Impossibile inviare il processo di stampa."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72
msgctxt "@action:button"
msgid "Request Access"
msgstr "Richiesta di accesso"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:27
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:71
msgctxt "@info:tooltip"
msgid "Send access request to the printer"
msgstr "Invia la richiesta di accesso alla stampante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:232
#, python-brace-format
msgctxt "@info:status"
msgid ""
"Connected over the network to {0}. Please approve the access request on the "
"printer."
msgstr "Collegato alla rete a {0}. Si prega di approvare la richiesta di accesso sulla stampante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:239
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}."
msgstr "Collegato alla rete a {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:252
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}. No access to control the printer."
msgstr "Collegato alla rete a {0}. Nessun accesso per controllare la stampante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:257
msgctxt "@info:status"
msgid "Access request was denied on the printer."
msgstr "Richiesta di accesso negata sulla stampante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:260
msgctxt "@info:status"
msgid "Access request failed due to a timeout."
msgstr "Richiesta di accesso non riuscita per superamento tempo."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:323
msgctxt "@info:status"
msgid "The connection with the network was lost."
msgstr "Il collegamento con la rete si è interrotto."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:354
msgctxt "@info:status"
msgid ""
"The connection with the printer was lost. Check your printer to see if it is "
"connected."
msgstr "Il collegamento con la stampante si è interrotto. Controllare la stampante per verificare se è collegata."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:466
msgctxt "@info:status"
msgid ""
"Unable to start a new print job because the printer is busy. Please check "
"the printer."
msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Controllare la stampante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:471
#, python-format
msgctxt "@info:status"
msgid ""
"Unable to start a new print job, printer is busy. Current printer status is "
"%s."
msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Stato stampante corrente %s."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:491
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
msgstr "Impossibile avviare un nuovo processo di stampa. Nessun PrinterCore caricato nello slot {0}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:498
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No material loaded in slot {0}"
msgstr "Impossibile avviare un nuovo processo di stampa. Nessun materiale caricato nello slot {0}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:509
#, python-brace-format
msgctxt "@label"
msgid "Not enough material for spool {0}."
msgstr "Materiale per la bobina insufficiente {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:519
#, python-brace-format
msgctxt "@label"
msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "PrintCore diverso (Cura: {0}, Stampante: {1}) selezionato per lestrusore {2}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:533
#, python-brace-format
msgctxt "@label"
msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Materiale diverso (Cura: {0}, Stampante: {1}) selezionato per lestrusore {2}"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:536
msgctxt "@label"
msgid "Are you sure you wish to print with the selected configuration?"
msgstr "Sei sicuro di voler stampare con la configurazione selezionata?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:537
msgctxt "@label"
msgid ""
"There is a mismatch between the configuration of the printer and Cura. For "
"the best result, always slice for the PrintCores and materials that are "
"inserted in your printer."
msgstr "Le configurazioni della stampante e di Cura non corrispondono. Per ottenere i migliori risultati, sezionare sempre per i PrintCore e i materiali inseriti nella stampante utilizzata."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:543
msgctxt "@window:title"
msgid "Mismatched configuration"
msgstr "Mancata corrispondenza della configurazione"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:633
msgctxt "@info:status"
msgid "Sending data to printer"
msgstr "Invio dati alla stampante in corso"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:680
msgctxt "@info:status"
msgid "Unable to send data to printer. Is another job still active?"
msgstr "Impossibile inviare i dati alla stampante. Altro processo ancora attivo?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:804
msgctxt "@label:MonitorStatus"
msgid "Print aborted. Please check the printer"
msgstr "Stampa interrotta. Controllare la stampante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:810
msgctxt "@label:MonitorStatus"
msgid "Pausing print..."
msgstr "Messa in pausa stampa..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:812
msgctxt "@label:MonitorStatus"
msgid "Resuming print..."
msgstr "Ripresa stampa..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:920
msgctxt "@window:title"
msgid "Changes on the Printer"
msgstr "Modifiche alla stampante."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:922
msgctxt "@label"
msgid ""
"Do you want to change the PrintCores and materials in Cura to match your "
"printer?"
msgstr "Desideri modificare i PrintCore e i materiali in Cura per abbinare la stampante?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:924
msgctxt "@label"
msgid ""
"The PrintCores and/or materials on your printer were changed. For the best "
"result, always slice for the PrintCores and materials that are inserted in "
"your printer."
msgstr "I PrintCore e/o i materiali della stampante sono stati modificati. Per ottenere i migliori risultati, sezionare sempre per i PrintCore e i materiali inseriti nella stampante utilizzata."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:19
msgctxt "@action"
msgid "Connect via Network"
msgstr "Collega tramite rete"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57
msgctxt "@title:window"
msgid "Connect to Networked Printer"
msgstr "Collega alla stampante in rete"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:67
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.\n"
"\n"
"Select your printer from the list below:"
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 si collega Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante.\n\nSelezionare la stampante dallelenco seguente:"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106
msgctxt "@action:button"
msgid "Refresh"
msgstr "Aggiorna"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:198
msgctxt "@label"
msgid ""
"If your printer is not listed, read the <a href='%1'>network-printing "
"troubleshooting guide</a>"
msgstr "Se la stampante non è nellelenco, leggere la <a href=%1>guida alla ricerca guasti per la stampa in rete</a>"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:225
msgctxt "@label"
msgid "Type"
msgstr "Tipo"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3"
msgstr "Ultimaker 3"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3 Extended"
msgstr "Ultimaker3 Extended"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:237
msgctxt "@label"
msgid "Firmware version"
msgstr "Versione firmware"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:249
msgctxt "@label"
msgid "Address"
msgstr "Indirizzo"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:263
msgctxt "@label"
msgid "The printer at this address has not yet responded."
msgstr "La stampante a questo indirizzo non ha ancora risposto."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:268
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38
msgctxt "@action:button"
msgid "Connect"
msgstr "Collega"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:280
msgctxt "@label:"
msgid "Print Again"
msgstr "Ripeti stampa"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:289
msgctxt "@title:window"
msgid "Printer Address"
msgstr "Indirizzo stampante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:319
msgctxt "@alabel"
msgid "Enter the IP address or hostname of your printer on the network."
msgstr "Inserire lindirizzo IP o lhostname della stampante sulla rete."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:346
msgctxt "@action:button"
msgid "Ok"
msgstr "Ok"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:37
msgctxt "@info:tooltip"
msgid "Connect to a printer"
msgstr "Collega a una stampante"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:116
msgctxt "@info:tooltip"
msgid "Load the configuration of the printer into Cura"
msgstr "Carica la configurazione della stampante in Cura"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117
msgctxt "@action:button"
msgid "Activate Configuration"
msgstr "Attiva la configurazione"

File diff suppressed because it is too large Load diff

View file

@ -2,11 +2,11 @@
msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: http://github.com/ultimaker/uranium\n"
"Report-Msgid-Bugs-To: http://github.com/Ultimaker/Cura\n"
"POT-Creation-Date: 2016-09-20 17:35+0000\n"
"PO-Revision-Date: 2016-09-29 13:02+0200\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE\n"
"PO-Revision-Date: 2016-10-11 16:05+0200\n"
"Last-Translator: Ruben Dulek <r.dulek@ultimaker.com>\n"
"Language-Team: Ultimaker\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -34,7 +34,7 @@ msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebrui
#: fdmextruder.def.json
msgctxt "machine_nozzle_offset_x label"
msgid "Nozzle X Offset"
msgstr "Offset X-nozzle"
msgstr "X-Offset Nozzle"
#: fdmextruder.def.json
msgctxt "machine_nozzle_offset_x description"
@ -44,7 +44,7 @@ msgstr "De X-coördinaat van de offset van de nozzle."
#: fdmextruder.def.json
msgctxt "machine_nozzle_offset_y label"
msgid "Nozzle Y Offset"
msgstr "Offset Y-nozzle"
msgstr "Y-Offset Nozzle"
#: fdmextruder.def.json
msgctxt "machine_nozzle_offset_y description"
@ -54,7 +54,7 @@ msgstr "De Y-coördinaat van de offset van de nozzle."
#: fdmextruder.def.json
msgctxt "machine_extruder_start_code label"
msgid "Extruder Start G-Code"
msgstr "G-code van extruderstart"
msgstr "Start G-code van Extruder"
#: fdmextruder.def.json
msgctxt "machine_extruder_start_code description"
@ -64,7 +64,7 @@ msgstr "Start-g-code die wordt uitgevoerd wanneer de extruder wordt ingeschakeld
#: fdmextruder.def.json
msgctxt "machine_extruder_start_pos_abs label"
msgid "Extruder Start Position Absolute"
msgstr "Absolute startpositie extruder"
msgstr "Absolute Startpositie Extruder"
#: fdmextruder.def.json
msgctxt "machine_extruder_start_pos_abs description"
@ -76,7 +76,7 @@ msgstr "Maak van de startpositie van de extruder de absolute startpositie, in pl
#: fdmextruder.def.json
msgctxt "machine_extruder_start_pos_x label"
msgid "Extruder Start Position X"
msgstr "X-startpositie extruder"
msgstr "X-startpositie Extruder"
#: fdmextruder.def.json
msgctxt "machine_extruder_start_pos_x description"
@ -86,7 +86,7 @@ msgstr "De X-coördinaat van de startpositie wanneer de extruder wordt ingeschak
#: fdmextruder.def.json
msgctxt "machine_extruder_start_pos_y label"
msgid "Extruder Start Position Y"
msgstr "Y-startpositie extruder"
msgstr "Y-startpositie Extruder"
#: fdmextruder.def.json
msgctxt "machine_extruder_start_pos_y description"
@ -96,7 +96,7 @@ msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschak
#: fdmextruder.def.json
msgctxt "machine_extruder_end_code label"
msgid "Extruder End G-Code"
msgstr "G-code van extrudereinde"
msgstr "Eind-g-code van Extruder"
#: fdmextruder.def.json
msgctxt "machine_extruder_end_code description"
@ -106,7 +106,7 @@ msgstr "Eind-g-code die wordt uitgevoerd wanneer de extruder wordt uitgeschakeld
#: fdmextruder.def.json
msgctxt "machine_extruder_end_pos_abs label"
msgid "Extruder End Position Absolute"
msgstr "Absolute eindpositie extruder"
msgstr "Absolute Eindpositie Extruder"
#: fdmextruder.def.json
msgctxt "machine_extruder_end_pos_abs description"
@ -118,7 +118,7 @@ msgstr "Maak van de eindpositie van de extruder de absolute eindpositie, in plaa
#: fdmextruder.def.json
msgctxt "machine_extruder_end_pos_x label"
msgid "Extruder End Position X"
msgstr "X-eindpositie extruder"
msgstr "X-eindpositie Extruder"
#: fdmextruder.def.json
msgctxt "machine_extruder_end_pos_x description"
@ -128,7 +128,7 @@ msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschak
#: fdmextruder.def.json
msgctxt "machine_extruder_end_pos_y label"
msgid "Extruder End Position Y"
msgstr "Y-eindpositie extruder"
msgstr "Y-eindpositie Extruder"
#: fdmextruder.def.json
msgctxt "machine_extruder_end_pos_y description"
@ -138,19 +138,19 @@ msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschak
#: fdmextruder.def.json
msgctxt "extruder_prime_pos_z label"
msgid "Extruder Prime Z Position"
msgstr "Z-positie voor primen extruder"
msgstr "Z-positie voor Primen Extruder"
#: fdmextruder.def.json
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."
msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt geprimet aan het begin van het printen."
#: fdmextruder.def.json
msgctxt "platform_adhesion label"
msgid "Build Plate Adhesion"
msgstr "Hechting aan platform"
msgstr "Hechting aan Platform"
#: fdmextruder.def.json
msgctxt "platform_adhesion description"
@ -160,23 +160,23 @@ msgstr "Hechting"
#: fdmextruder.def.json
msgctxt "extruder_prime_pos_x label"
msgid "Extruder Prime X Position"
msgstr "X-positie voor primen extruder"
msgstr "X-positie voor Primen Extruder"
#: fdmextruder.def.json
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 teruggeduwd aan het begin van het printen."
msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimet aan het begin van het printen."
#: fdmextruder.def.json
msgctxt "extruder_prime_pos_y label"
msgid "Extruder Prime Y Position"
msgstr "Y-positie voor primen extruder"
msgstr "Y-positie voor Primen Extruder"
#: fdmextruder.def.json
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 teruggeduwd aan het begin van het printen."
msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimet aan het begin van het printen."

File diff suppressed because it is too large Load diff

View file

@ -2295,25 +2295,6 @@ msgid ""
"Click to open the profile manager."
msgstr "Bazı ayar değerleri profilinizde saklanan değerlerden farklıdır.\n\nProfil yöneticisini açmak için tıklayın."
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:24
msgid "Modify G-Code"
msgstr "GCode Değiştir"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:12
msgctxt "@label"
msgid "Post Processing"
msgstr "Son İşleme"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/__init__.py:16
msgctxt "Description of plugin"
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ı"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
msgctxt "@title:window"
msgid "Post Processing Plugin"
msgstr "Son İşleme Uzantısı"
#: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:49
msgctxt "@label"
msgid "Post Processing Scripts"
@ -2333,3 +2314,318 @@ msgstr "Ayarlar"
msgctxt "@info:tooltip"
msgid "Change active post-processing scripts"
msgstr "Etkin son işleme dosyalarını değiştir"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/__init__.py:13
msgctxt "@info:whatsthis"
msgid "Manages network connections to Ultimaker 3 printers"
msgstr "Ultimaker 3 yazıcıları için ağ bağlantılarını yönetir"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:100
msgctxt "@action:button"
msgid "Print over network"
msgstr "Ağ üzerinden yazdır"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:101
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Ağ üzerinden yazdır"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:143
msgctxt "@info:status"
msgid ""
"Access to the printer requested. Please approve the request on the printer"
msgstr "İstenen yazıcıya erişim. Lütfen yazıcı isteğini onaylayın"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:144
msgctxt "@info:status"
msgid ""
msgstr ""
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@action:button"
msgid "Retry"
msgstr "Yeniden dene"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:145
msgctxt "@info:tooltip"
msgid "Re-send the access request"
msgstr "Erişim talebini yeniden gönder"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:147
msgctxt "@info:status"
msgid "Access to the printer accepted"
msgstr "Kabul edilen yazıcıya erişim"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:148
msgctxt "@info:status"
msgid "No access to print with this printer. Unable to send print job."
msgstr "Bu yazıcıyla yazdırmaya erişim yok. Yazdırma işi gönderilemedi."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72
msgctxt "@action:button"
msgid "Request Access"
msgstr "Erişim Talep Et"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:149
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:27
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:71
msgctxt "@info:tooltip"
msgid "Send access request to the printer"
msgstr "Yazıcıya erişim talebi gönder"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:232
#, python-brace-format
msgctxt "@info:status"
msgid ""
"Connected over the network to {0}. Please approve the access request on the "
"printer."
msgstr "Ağ üzerinden şuraya bağlandı: {0}. Lütfen yazıcıya erişim isteğini onaylayın."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:239
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}."
msgstr "Ağ üzerinden şuraya bağlandı: {0}."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:252
#, python-brace-format
msgctxt "@info:status"
msgid "Connected over the network to {0}. No access to control the printer."
msgstr "Ağ üzerinden şuraya bağlandı: {0}. Yazıcıyı kontrol etmek için erişim yok."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:257
msgctxt "@info:status"
msgid "Access request was denied on the printer."
msgstr "Yazıcıya erişim talebi reddedildi."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:260
msgctxt "@info:status"
msgid "Access request failed due to a timeout."
msgstr "Erişim talebi zaman aşımı nedeniyle başarısız oldu."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:323
msgctxt "@info:status"
msgid "The connection with the network was lost."
msgstr "Ağ bağlantısı kaybedildi."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:354
msgctxt "@info:status"
msgid ""
"The connection with the printer was lost. Check your printer to see if it is "
"connected."
msgstr "Yazıcı bağlantısı kaybedildi. Yazıcınızın bağlı olup olmadığını kontrol edin."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:466
msgctxt "@info:status"
msgid ""
"Unable to start a new print job because the printer is busy. Please check "
"the printer."
msgstr "Yazıcı meşgul olduğu için yeni bir yazdırma başlatılamıyor. Lütfen yazıcıyı kontrol edin."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:471
#, python-format
msgctxt "@info:status"
msgid ""
"Unable to start a new print job, printer is busy. Current printer status is "
"%s."
msgstr "Yazıcı meşgul, yeni bir yazdırma başlatılamıyor. Geçerli yazıcı durumu: %s."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:491
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
msgstr "Yeni bir yazdırma başlatılamıyor. {0} yuvasına PrinterCore yüklenmedi"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:498
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to start a new print job. No material loaded in slot {0}"
msgstr "Yeni bir yazdırma başlatılamıyor. {0} yuvasına Malzeme yüklenmedi"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:509
#, python-brace-format
msgctxt "@label"
msgid "Not enough material for spool {0}."
msgstr "Biriktirme {0} için yeterli malzeme yok."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:519
#, python-brace-format
msgctxt "@label"
msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Farklı PrintCore (Cura: {0}, Yazıcı: {1}), ekstrüder {2} için seçildi"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:533
#, python-brace-format
msgctxt "@label"
msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
msgstr "Farklı malzeme (Cura: {0}, Yazıcı: {1}), ekstrüder {2} için seçildi"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:536
msgctxt "@label"
msgid "Are you sure you wish to print with the selected configuration?"
msgstr "Seçilen yapılandırma ile yazdırmak istediğinizden emin misiniz?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:537
msgctxt "@label"
msgid ""
"There is a mismatch between the configuration of the printer and Cura. For "
"the best result, always slice for the PrintCores and materials that are "
"inserted in your printer."
msgstr "Yazıcı yapılandırması ve Cura arasında uyumsuzluk var. En iyi sonucu almak istiyorsanız, her zaman PrintCore ve yazıcıya eklenen malzemeler için dilimleme yapın."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:543
msgctxt "@window:title"
msgid "Mismatched configuration"
msgstr "Uyumsuz yapılandırma"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:633
msgctxt "@info:status"
msgid "Sending data to printer"
msgstr "Veriler yazıcıya gönderiliyor"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:680
msgctxt "@info:status"
msgid "Unable to send data to printer. Is another job still active?"
msgstr "Veriler yazıcıya gönderilemedi. Hala etkin olan başka bir iş var mı?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:804
msgctxt "@label:MonitorStatus"
msgid "Print aborted. Please check the printer"
msgstr "Yazdırma durduruldu. Lütfen yazıcıyı kontrol edin"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:810
msgctxt "@label:MonitorStatus"
msgid "Pausing print..."
msgstr "Yazdırma duraklatılıyor..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:812
msgctxt "@label:MonitorStatus"
msgid "Resuming print..."
msgstr "Yazdırma devam ediyor..."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:920
msgctxt "@window:title"
msgid "Changes on the Printer"
msgstr "Yazıcıdaki Değişiklikler"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:922
msgctxt "@label"
msgid ""
"Do you want to change the PrintCores and materials in Cura to match your "
"printer?"
msgstr "Yazıcıya uyumlu hale getirmek için PrintCore ve Curadaki malzemeleri değiştirmek istiyor musunuz?"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py:924
msgctxt "@label"
msgid ""
"The PrintCores and/or materials on your printer were changed. For the best "
"result, always slice for the PrintCores and materials that are inserted in "
"your printer."
msgstr "PrintCore ve/veya yazıcınızdaki malzemeler değiştirildi. En iyi sonucu almak istiyorsanız, her zaman PrintCore ve yazıcıya eklenen malzemeler için dilimleme yapın."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:19
msgctxt "@action"
msgid "Connect via Network"
msgstr "Ağ ile Bağlan"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57
msgctxt "@title:window"
msgid "Connect to Networked Printer"
msgstr "Ağ Yazıcısına Bağlan"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:67
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.\n"
"\n"
"Select your printer from the list below:"
msgstr "Yazıcınıza ağ üzerinden doğrudan bağlamak için, lütfen yazıcınızın ağ kablosu kullanan bir ağa bağlı olduğundan emin olun veya yazıcınızı WiFi ağına bağlayın. Cura'ya yazıcınız ile bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz.\n\nAşağıdaki listeden yazıcınızı seçin:"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106
msgctxt "@action:button"
msgid "Refresh"
msgstr "Yenile"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:198
msgctxt "@label"
msgid ""
"If your printer is not listed, read the <a href='%1'>network-printing "
"troubleshooting guide</a>"
msgstr "Yazıcınız listede yoksa <a href=%1>ağ yazdırma sorun giderme kılavuzunu</a> okuyun"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:225
msgctxt "@label"
msgid "Type"
msgstr "Tür"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3"
msgstr "Ultimaker 3"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:231
msgctxt "@label"
msgid "Ultimaker 3 Extended"
msgstr "Genişletilmiş Ultimaker 3"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:237
msgctxt "@label"
msgid "Firmware version"
msgstr "Üretici yazılımı sürümü"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:249
msgctxt "@label"
msgid "Address"
msgstr "Adres"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:263
msgctxt "@label"
msgid "The printer at this address has not yet responded."
msgstr "Bu adresteki yazıcı henüz yanıt vermedi."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:268
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38
msgctxt "@action:button"
msgid "Connect"
msgstr "Bağlan"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:280
msgctxt "@label:"
msgid "Print Again"
msgstr "Yeniden Yazdır"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:289
msgctxt "@title:window"
msgid "Printer Address"
msgstr "Yazıcı Adresi"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:319
msgctxt "@alabel"
msgid "Enter the IP address or hostname of your printer on the network."
msgstr "IP adresini veya yazıcınızın ağ üzerindeki ana bilgisayar adını girin."
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:346
msgctxt "@action:button"
msgid "Ok"
msgstr "Tamam"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:37
msgctxt "@info:tooltip"
msgid "Connect to a printer"
msgstr "Yazıcıya Bağlan"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:116
msgctxt "@info:tooltip"
msgid "Load the configuration of the printer into Cura"
msgstr "Yazıcı yapılandırmasını Curaya yükle"
#: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117
msgctxt "@action:button"
msgid "Activate Configuration"
msgstr "Yapılandırmayı Etkinleştir"

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generic ABS profile. Serves as an example file, data in this file is not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Generic</brand>
<material>ABS</material>
<color>Generic</color>
</name>
<GUID>60636bb4-518f-42e7-8237-fe77b194ebe0</GUID>
<version>1</version>
<color_code>#8cb219</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generic CPE profile. Serves as an example file, data in this file is not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Generic</brand>
<material>CPE</material>
<color>Generic</color>
</name>
<GUID>12f41353-1a33-415e-8b4f-a775a6c70cc6</GUID>
<version>1</version>
<color_code>#159499</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,39 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generic CPE+ profile. Serves as an example file, data in this file is not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Generic</brand>
<material>CPE+</material>
<color>Generic</color>
</name>
<GUID>e2409626-b5a0-4025-b73e-b58070219259</GUID>
<version>1</version>
<color_code>#3633F2</color_code>
</metadata>
<properties>
<density>1.18</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="hardware compatible">no</setting><!-- This material is not supported on most printers due to high temperatures -->
<setting key="print temperature">260</setting>
<setting key="heated bed temperature">110</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<setting key="hardware compatible">yes</setting>
<hotend id="0.25 mm">
<setting key="hardware compatible">no</setting>
</hotend>
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
</settings>
</fdmmaterial>

View file

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generic Nylon profile. Serves as an example file, data in this file is not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Generic</brand>
<material>Nylon</material>
<color>Generic</color>
</name>
<GUID>28fb4162-db74-49e1-9008-d05f1e8bef5c</GUID>
<version>1</version>
<color_code>#3DF266</color_code>
</metadata>
<properties>
<density>1.14</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
</settings>
</fdmmaterial>

View file

@ -1,37 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generic PC profile. Serves as an example file, data in this file is not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Generic</brand>
<material>PC</material>
<color>Generic</color>
</name>
<GUID>98c05714-bf4e-4455-ba27-57d74fe331e4</GUID>
<version>1</version>
<color_code>#F29030</color_code>
</metadata>
<properties>
<density>1.19</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="hardware compatible">no</setting><!-- This material is not supported on most printers due to high temperatures -->
<setting key="print temperature">260</setting>
<setting key="heated bed temperature">110</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<setting key="hardware compatible">yes</setting>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generic PLA profile. Serves as an example file, data in this file is not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Generic</brand>
<material>PLA</material>
<color>Generic</color>
</name>
<GUID>506c9f0d-e3aa-4bd4-b2d2-23e2425b1aa9</GUID>
<version>1</version>
<color_code>#ffc924</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,39 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generic TPU 95A profile. Serves as an example file, data in this file is not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Generic</brand>
<material>TPU 95A</material>
<color>Generic</color>
</name>
<GUID>1d52b2be-a3a2-41de-a8b1-3bcdb5618695</GUID>
<version>1</version>
<color_code>#B22744</color_code>
</metadata>
<properties>
<density>1.22</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="hardware compatible">no</setting><!-- This material is not supported on most printers due to high temperatures -->
<setting key="print temperature">260</setting>
<setting key="heated bed temperature">110</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<setting key="hardware compatible">yes</setting>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm">
<setting key="hardware compatible">no</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>Black</color>
</name>
<GUID>2f9d2279-9b0e-4765-bf9b-d1e1e13f3c49</GUID>
<version>0</version>
<color_code>#2a292a</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>Blue</color>
</name>
<GUID>7c9575a6-c8d6-40ec-b3dd-18d7956bfaae</GUID>
<version>0</version>
<color_code>#00387b</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,42 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>Green</color>
</name>
<GUID>3400c0d1-a4e3-47de-a444-7b704f287171</GUID>
<version>0</version>
<color_code>#61993b</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>Grey</color>
</name>
<GUID>8b75b775-d3f2-4d0f-8fb2-2a3dd53cf673</GUID>
<version>0</version>
<color_code>#52595d</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>Orange</color>
</name>
<GUID>0b4ca6ef-eac8-4b23-b3ca-5f21af00e54f</GUID>
<version>0</version>
<color_code>#ed6b21</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>Pearl Gold</color>
</name>
<GUID>7cbdb9ca-081a-456f-a6ba-f73e4e9cb856</GUID>
<version>0</version>
<color_code>#80643f</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>Red</color>
</name>
<GUID>5df7afa6-48bd-4c19-b314-839fe9f08f1f</GUID>
<version>0</version>
<color_code>#bb1e10</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>Silver Metallic</color>
</name>
<GUID>763c926e-a5f7-4ba0-927d-b4e038ea2735</GUID>
<version>0</version>
<color_code>#a1a1a0</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>White</color>
</name>
<GUID>5253a75a-27dc-4043-910f-753ae11bc417</GUID>
<version>0</version>
<color_code>#ecece7</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated ABS profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>ABS</material>
<color>Yellow</color>
</name>
<GUID>e873341d-d9b8-45f9-9a6f-5609e1bcff68</GUID>
<version>0</version>
<color_code>#f7b500</color_code>
</metadata>
<properties>
<density>1.10</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">240</setting>
<setting key="heated bed temperature">80</setting>
<setting key="standby temperature">200</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated CPE profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>CPE</material>
<color>Black</color>
</name>
<GUID>a8955dc3-9d7e-404d-8c03-0fd6fee7f22d</GUID>
<version>0</version>
<color_code>#2a292a</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated CPE profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>CPE</material>
<color>Blue</color>
</name>
<GUID>4d816290-ce2e-40e0-8dc8-3f702243131e</GUID>
<version>0</version>
<color_code>#00a3e0</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated CPE profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>CPE</material>
<color>Dark Grey</color>
</name>
<GUID>10961c00-3caf-48e9-a598-fa805ada1e8d</GUID>
<version>0</version>
<color_code>#4f5250</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated CPE profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>CPE</material>
<color>Green</color>
</name>
<GUID>7ff6d2c8-d626-48cd-8012-7725fa537cc9</GUID>
<version>0</version>
<color_code>#78be20</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated CPE profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>CPE</material>
<color>Light Grey</color>
</name>
<GUID>173a7bae-5e14-470e-817e-08609c61e12b</GUID>
<version>0</version>
<color_code>#c5c7c4</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated CPE profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>CPE</material>
<color>Red</color>
</name>
<GUID>00181d6c-7024-479a-8eb7-8a2e38a2619a</GUID>
<version>0</version>
<color_code>#c8102e</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated CPE profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>CPE</material>
<color>Transparent</color>
</name>
<GUID>bd0d9eb3-a920-4632-84e8-dcd6086746c5</GUID>
<version>0</version>
<color_code>#d0d0d0</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated CPE profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>CPE</material>
<color>White</color>
</name>
<GUID>881c888e-24fb-4a64-a4ac-d5c95b096cd7</GUID>
<version>0</version>
<color_code>#f1ece1</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated CPE profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>CPE</material>
<color>Yellow</color>
</name>
<GUID>b9176a2a-7a0f-4821-9f29-76d882a88682</GUID>
<version>0</version>
<color_code>#f6b600</color_code>
</metadata>
<properties>
<density>1.27</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">70</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generic Nylon profile. Serves as an example file, data in this file is not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>Nylon</material>
<color>Black</color>
</name>
<GUID>c64c2dbe-5691-4363-a7d9-66b2dc12837f</GUID>
<version>1</version>
<color_code>#27292b</color_code>
</metadata>
<properties>
<density>1.14</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Generic Nylon profile. Serves as an example file, data in this file is not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>Nylon</material>
<color>Transparent</color>
</name>
<GUID>e256615d-a04e-4f53-b311-114b90560af9</GUID>
<version>1</version>
<color_code>#d0d0d0</color_code>
</metadata>
<properties>
<density>1.14</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">250</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Black</color>
</name>
<GUID>3ee70a86-77d8-4b87-8005-e4a1bc57d2ce</GUID>
<version>0</version>
<color_code>#0e0e10</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Blue</color>
</name>
<GUID>44a029e6-e31b-4c9e-a12f-9282e29a92ff</GUID>
<version>0</version>
<color_code>#00387b</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Green</color>
</name>
<GUID>2433b8fb-dcd6-4e36-9cd5-9f4ee551c04c</GUID>
<version>0</version>
<color_code>#61993b</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Magenta</color>
</name>
<GUID>fe3982c8-58f4-4d86-9ac0-9ff7a3ab9cbc</GUID>
<version>0</version>
<color_code>#bc4077</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Orange</color>
</name>
<GUID>d9549dba-b9df-45b9-80a5-f7140a9a2f34</GUID>
<version>0</version>
<color_code>#ed6b21</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Pearl-White</color>
</name>
<GUID>d9fc79db-82c3-41b5-8c99-33b3747b8fb3</GUID>
<version>0</version>
<color_code>#e3d9c6</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Red</color>
</name>
<GUID>9cfe5bf1-bdc5-4beb-871a-52c70777842d</GUID>
<version>0</version>
<color_code>#bb1e10</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Silver Metallic</color>
</name>
<GUID>0e01be8c-e425-4fb1-b4a3-b79f255f1db9</GUID>
<version>0</version>
<color_code>#a1a1a0</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Transparent</color>
</name>
<GUID>532e8b3d-5fd4-4149-b936-53ada9bd6b85</GUID>
<version>0</version>
<color_code>#d0d0d0</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>White</color>
</name>
<GUID>e509f649-9fe6-4b14-ac45-d441438cb4ef</GUID>
<version>0</version>
<color_code>#f1ece1</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Automatically generated PLA profile. Data in this file may not be not correct.
-->
<fdmmaterial xmlns="http://www.ultimaker.com/material">
<metadata>
<name>
<brand>Ultimaker</brand>
<material>PLA</material>
<color>Yellow</color>
</name>
<GUID>9c1959d0-f597-46ec-9131-34020c7a54fc</GUID>
<version>0</version>
<color_code>#f9a800</color_code>
</metadata>
<properties>
<density>1.24</density>
<diameter>2.85</diameter>
</properties>
<settings>
<setting key="print temperature">200</setting>
<setting key="heated bed temperature">60</setting>
<setting key="standby temperature">175</setting>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2+"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended+"/>
<hotend id="0.25 mm" />
<hotend id="0.4 mm" />
<hotend id="0.6 mm" />
<hotend id="0.8 mm" />
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Go"/>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker 2 Extended"/>
<setting key="standby temperature">150</setting>
<setting key="processing temperature graph">
<point flow="2" temperature="180"/>
<point flow="10" temperature="230"/>
</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker" product="Ultimaker Original"/>
<setting key="standby temperature">150</setting>
</machine>
<machine>
<machine_identifier manufacturer="Ultimaker B.V." product="Ultimaker 3"/>
<hotend id="BB 0.4" />
<hotend id="AA 0.4">
<setting key="hardware compatible">yes</setting>
</hotend>
</machine>
</settings>
</fdmmaterial>

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Draft Print
definition = ultimaker3
[metadata]
type = quality
quality_type = draft
material = generic_abs_ultimaker3_AA_0.4
weight = -2
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.2
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.85
machine_nozzle_heat_up_speed = 1.5
material_bed_temperature = 80
material_print_temperature = 240
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 16
prime_tower_wipe_enabled = True
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
raft_base_speed = =0.75 * raft_speed
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 20
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 60
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 35 / 60)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 45 / 60)
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Fast Print
definition = ultimaker3
[metadata]
type = quality
quality_type = fast
material = generic_abs_ultimaker3_AA_0.4
weight = -1
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 7
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.15
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.85
machine_nozzle_heat_up_speed = 1.5
material_bed_temperature = 80
material_print_temperature = 235
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 16
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 60
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 60)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 40 / 60)
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = High Quality
definition = ultimaker3
[metadata]
type = quality
quality_type = high
material = generic_abs_ultimaker3_AA_0.4
weight = 1
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 12
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.06
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.8
machine_nozzle_heat_up_speed = 1.5
material_bed_temperature = 80
material_print_temperature = 225
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 16
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 50
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 50)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 50)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Normal Quality
definition = ultimaker3
[metadata]
type = quality
quality_type = normal
material = generic_abs_ultimaker3_AA_0.4
weight = 0
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.85
machine_nozzle_heat_up_speed = 1.5
material_bed_temperature = 80
material_print_temperature = 230
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 16
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 55
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 55)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 55)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Draft Print
definition = ultimaker3
[metadata]
type = quality
quality_type = draft
material = generic_cpe_ultimaker3_AA_0.4
weight = -2
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.2
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.9
machine_nozzle_heat_up_speed = 1.4
material_bed_temperature = 70
material_print_temperature = 250
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 17
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 20
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 60
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 35 / 60)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 45 / 60)
speed_wall_0 = =math.ceil(speed_wall * 35 / 45)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Fast Print
definition = ultimaker3
[metadata]
type = quality
quality_type = fast
material = generic_cpe_ultimaker3_AA_0.4
weight = -1
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 7
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.15
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.9
machine_nozzle_heat_up_speed = 1.4
material_bed_temperature = 70
material_print_temperature = 245
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 17
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 60
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 60)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 40 / 60)
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = High Quality
definition = ultimaker3
[metadata]
type = quality
quality_type = high
material = generic_cpe_ultimaker3_AA_0.4
weight = 1
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 12
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.06
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.85
machine_nozzle_heat_up_speed = 1.5
material_bed_temperature = 70
material_print_temperature = 235
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 17
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 50
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 50)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 50)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Normal Quality
definition = ultimaker3
[metadata]
type = quality
quality_type = normal
material = generic_cpe_ultimaker3_AA_0.4
weight = 0
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.85
machine_nozzle_heat_up_speed = 1.5
material_bed_temperature = 70
material_print_temperature = 240
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
prime_tower_enable = True
prime_tower_size = 17
prime_tower_wipe_enabled = True
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 55
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 55)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 55)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,127 @@
[general]
version = 2
name = Draft Print
definition = ultimaker3
[metadata]
type = quality
quality_type = draft
material = generic_nylon_ultimaker3_AA_0.4
weight = -2
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = raft
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 40
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_layer_time_fan_speed_max = 20
cool_min_speed = 10
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_overlap_mm = 0.05
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.2
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.9
machine_nozzle_heat_up_speed = 1.4
material_bed_temperature = 60
material_print_temperature = 255
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 40
ooze_shield_dist = 2
ooze_shield_enabled = False
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = 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)
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2)
retraction_amount = 8
retraction_count_max = 25
retraction_extra_prime_amount = 0
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_speed = 25
skin_overlap = 50
speed_infill = =speed_print
speed_layer_0 = 10
speed_prime_tower = =speed_topbottom
speed_print = 70
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 70)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 70)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
switch_extruder_prime_speed = 30
switch_extruder_retraction_amount = 30
switch_extruder_retraction_speeds = 40
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_surface_layers = 2
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
brim_width = 7
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
support_bottom_stair_step_height = 0.3
wall_line_width_x = =wall_line_width

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Fast Print
definition = ultimaker3
[metadata]
type = quality
quality_type = fast
material = generic_nylon_ultimaker3_AA_0.4
weight = -1
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = raft
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 40
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_layer_time_fan_speed_max = 20
cool_min_speed = 10
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_overlap_mm = 0.05
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.15
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.9
machine_nozzle_heat_up_speed = 1.4
material_bed_temperature = 60
material_print_temperature = 250
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 40
ooze_shield_dist = 2
ooze_shield_enabled = False
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = 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)
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2)
retraction_amount = 8
retraction_count_max = 25
retraction_extra_prime_amount = 0
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_speed = 25
skin_overlap = 50
speed_infill = =speed_print
speed_layer_0 = 10
speed_prime_tower = =speed_topbottom
speed_print = 70
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 70)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 70)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
switch_extruder_prime_speed = 30
switch_extruder_retraction_amount = 30
switch_extruder_retraction_speeds = 40
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_surface_layers = 2
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
brim_width = 7
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
support_bottom_stair_step_height = 0.3
wall_line_width_x = =wall_line_width

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = High Quality
definition = ultimaker3
[metadata]
type = quality
quality_type = high
material = generic_nylon_ultimaker3_AA_0.4
weight = 1
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = raft
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 40
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_layer_time_fan_speed_max = 20
cool_min_speed = 15
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_overlap_mm = 0.05
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.06
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.9
machine_nozzle_heat_up_speed = 1.4
material_bed_temperature = 60
material_print_temperature = 245
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 40
ooze_shield_dist = 2
ooze_shield_enabled = False
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = 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)
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2)
retraction_amount = 8
retraction_count_max = 25
retraction_extra_prime_amount = 0
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_speed = 25
skin_overlap = 50
speed_infill = =speed_print
speed_layer_0 = 10
speed_prime_tower = =speed_topbottom
speed_print = 70
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 70)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 70)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
switch_extruder_prime_speed = 30
switch_extruder_retraction_amount = 30
switch_extruder_retraction_speeds = 40
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_surface_layers = 2
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
brim_width = 7
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
support_bottom_stair_step_height = 0.3
wall_line_width_x = =wall_line_width

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Normal Quality
definition = ultimaker3
[metadata]
type = quality
quality_type = normal
material = generic_nylon_ultimaker3_AA_0.4
weight = 0
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = raft
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 40
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_layer_time_fan_speed_max = 20
cool_min_speed = 12
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_overlap_mm = 0.05
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.9
machine_nozzle_heat_up_speed = 1.4
material_bed_temperature = 60
material_print_temperature = 245
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 40
ooze_shield_dist = 2
ooze_shield_enabled = False
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = 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)
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2)
retraction_amount = 8
retraction_count_max = 25
retraction_extra_prime_amount = 0
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_speed = 25
skin_overlap = 50
speed_infill = =speed_print
speed_layer_0 = 10
speed_prime_tower = =speed_topbottom
speed_print = 70
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 70)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 70)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
switch_extruder_prime_speed = 30
switch_extruder_retraction_amount = 30
switch_extruder_retraction_speeds = 40
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_surface_layers = 2
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
brim_width = 7
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
support_bottom_stair_step_height = 0.3
wall_line_width_x = =wall_line_width

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Draft Print
definition = ultimaker3
[metadata]
type = quality
quality_type = draft
material = generic_pla_ultimaker3_AA_0.4
weight = -2
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 2 * layer_height
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.2
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.75
machine_nozzle_heat_up_speed = 1.6
material_bed_temperature = 60
material_print_temperature = 205
material_standby_temperature = 100
multiple_mesh_overlap = 0
prime_tower_enable = False
prime_tower_size = 15
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 20
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 70
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 35 / 70)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 50 / 70)
speed_wall_0 = =math.ceil(speed_wall * 35 / 50)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
cool_fan_speed_max = =cool_fan_speed
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_fan_speed = 100
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Fast Print
definition = ultimaker3
[metadata]
type = quality
quality_type = fast
material = generic_pla_ultimaker3_AA_0.4
weight = -1
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 2 * layer_height
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.15
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.75
machine_nozzle_heat_up_speed = 1.6
material_bed_temperature = 60
material_print_temperature = 200
material_standby_temperature = 100
multiple_mesh_overlap = 0
prime_tower_enable = False
prime_tower_size = 15
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 80
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 80)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 40 / 80)
speed_wall_0 = =math.ceil(speed_wall * 30 / 40)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
cool_fan_speed_max = =cool_fan_speed
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_fan_speed = 100
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = High Quality
definition = ultimaker3
[metadata]
type = quality
quality_type = high
material = generic_pla_ultimaker3_AA_0.4
weight = 1
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 2 * layer_height
cool_min_layer_time = 5
cool_min_speed = 10
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.06
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.75
machine_nozzle_heat_up_speed = 1.6
material_bed_temperature = 60
material_print_temperature = 195
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 10
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 60
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 60)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 60)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
cool_fan_speed_max = =cool_fan_speed
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_fan_speed = 100
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,126 @@
[general]
version = 2
name = Normal Quality
definition = ultimaker3
[metadata]
type = quality
quality_type = normal
material = generic_pla_ultimaker3_AA_0.4
weight = 0
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 2 * layer_height
cool_min_layer_time = 5
cool_min_speed = 7
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.75
machine_nozzle_heat_up_speed = 1.6
material_bed_temperature = 60
material_print_temperature = 200
material_standby_temperature = 100
multiple_mesh_overlap = 0
prime_tower_enable = False
prime_tower_size = 15
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 10
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 70
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 70)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 70)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
cool_fan_speed_max = =cool_fan_speed
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_fan_speed = 100
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,126 @@
[general]
version = 2
name = Not Supported
definition = ultimaker3
[metadata]
weight = 0
type = quality
quality_type = normal
material = generic_pva_ultimaker3_AA_0.4
supported = false
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 3
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.8
machine_nozzle_heat_up_speed = 1.5
material_print_temperature = 215
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = True
raft_acceleration = =acceleration_layer_0
raft_airgap = 0
raft_base_speed = 20
raft_base_thickness = 0.3
raft_interface_line_spacing = 0.5
raft_interface_line_width = 0.5
raft_interface_speed = 20
raft_interface_thickness = 0.2
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_speed = 25
raft_surface_layers = 1
retraction_amount = 2
retraction_count_max = 10
retraction_extrusion_window = =retraction_amount
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_min_travel = 5
retraction_prime_speed = 15
skin_overlap = 10
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 35
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 20 / 35)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 35)
speed_wall_0 = =math.ceil(speed_wall * 25 / 30)
speed_wall_x = =speed_wall
support_angle = 45
support_bottom_height = =layer_height * 2
support_bottom_stair_step_height = =layer_height
support_infill_rate = 30
support_interface_enable = True
support_join_distance = 3
support_line_width = =round(line_width * 0.4 / 0.35, 2)
support_offset = 3
support_pattern = triangles
support_use_towers = False
support_xy_distance = =wall_line_width_0 * 3
support_xy_distance_overhang = =wall_line_width_0 / 2
support_z_distance = 0
switch_extruder_prime_speed = 15
switch_extruder_retraction_amount = 8
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_top_distance = =support_z_distance
support_bottom_distance = =support_z_distance / 2
raft_surface_thickness = =resolveOrValue('layer_height')
cool_fan_speed_max = =cool_fan_speed
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
material_bed_temperature = 60
ooze_shield_dist = 2
retraction_speed = 25
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,126 @@
[general]
version = 2
name = Not Supported
definition = ultimaker3
[metadata]
type = quality
quality_type = normal
material = generic_abs_ultimaker3_BB_0.4
weight = 0
supported = false
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.85
machine_nozzle_heat_up_speed = 1.5
material_bed_temperature = 80
material_print_temperature = 230
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 16
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 55
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 55)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 55)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,126 @@
[general]
version = 2
name = Not Supported
definition = ultimaker3
[metadata]
type = quality
quality_type = normal
material = generic_cpe_ultimaker3_BB_0.4
weight = 0
supported = false
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.85
machine_nozzle_heat_up_speed = 1.5
material_bed_temperature = 70
material_print_temperature = 240
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 17
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 55
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 55)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 55)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,126 @@
[general]
version = 2
name = Not Supported
definition = ultimaker3
[metadata]
type = quality
quality_type = normal
material = generic_nylon_ultimaker3_BB_0.4
weight = 0
supported = false
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = raft
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 40
cool_fan_speed_max = 100
cool_min_layer_time = 5
cool_min_layer_time_fan_speed_max = 20
cool_min_speed = 12
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_overlap_mm = 0.05
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.9
machine_nozzle_heat_up_speed = 1.4
material_bed_temperature = 60
material_print_temperature = 245
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 40
ooze_shield_dist = 2
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = True
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_base_speed = =0.75 * raft_speed
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)
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_surface_thickness = =round(machine_nozzle_size * 0.2 / 0.4, 2)
retraction_amount = 8
retraction_count_max = 25
retraction_extra_prime_amount = 0
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_speed = 25
skin_overlap = 50
speed_infill = =speed_print
speed_layer_0 = 10
speed_prime_tower = =speed_topbottom
speed_print = 70
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 70)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 70)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
switch_extruder_prime_speed = 30
switch_extruder_retraction_amount = 30
switch_extruder_retraction_speeds = 40
top_bottom_thickness = 1.2
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_thickness = 1.3
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_surface_layers = 2
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
brim_width = 7
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
support_bottom_stair_step_height = 0.3
wall_line_width_x = =wall_line_width

View file

@ -0,0 +1,127 @@
[general]
version = 2
name = Not Supported
definition = ultimaker3
[metadata]
type = quality
quality_type = normal
material = generic_pla_ultimaker3_BB_0.4
weight = 0
supported = false
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 7
cool_fan_full_at_height = =layer_height_0 + 2 * layer_height
cool_min_layer_time = 5
cool_min_speed = 7
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.75
machine_nozzle_heat_up_speed = 1.6
material_bed_temperature = 60
material_print_temperature = 200
material_standby_temperature = 100
multiple_mesh_overlap = 0
prime_tower_enable = False
prime_tower_size = 15
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_wipe_enabled = True
raft_base_thickness = =resolveOrValue('layer_height_0') * 1.2
raft_speed = =speed_print / 60 * 30
raft_interface_speed = =raft_speed * 0.75
raft_base_speed = =0.75 * raft_speed
raft_acceleration = =acceleration_print
raft_jerk = =jerk_print
retraction_count_max = 25
retraction_extrusion_window = 1
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
skin_overlap = 10
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 70
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 30 / 70)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 70)
speed_wall_0 = =math.ceil(speed_wall * 20 / 30)
speed_wall_x = =speed_wall
support_angle = 60
support_bottom_distance = =support_z_distance / 2
support_top_distance = =support_z_distance
support_xy_distance = =wall_line_width_0 * 2.5
support_xy_distance_overhang = =wall_line_width_0
support_z_distance = =layer_height * 2
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_line_width = =line_width
support_pattern = zigzag
support_infill_rate = 15
support_join_distance = 2
support_offset = 0.2
support_interface_enable = False
support_use_towers = True
raft_margin = 15
raft_airgap = 0.3
raft_surface_layers = 2
raft_surface_thickness = =resolveOrValue('layer_height')
raft_interface_thickness = =resolveOrValue('layer_height') * 1.5
raft_interface_line_width = =line_width * 2
raft_interface_line_spacing = =raft_interface_line_width + 0.2
cool_fan_speed_max = =cool_fan_speed
support_bottom_height = =extruderValue(support_interface_extruder_nr, 'support_interface_height')
retraction_amount = 6.5
cool_fan_speed = 100
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_min_travel = =line_width * 2
retraction_prime_speed = =retraction_speed
retraction_speed = 25
support_bottom_stair_step_height = 0.3
switch_extruder_prime_speed = =switch_extruder_retraction_speeds
switch_extruder_retraction_amount = =machine_heat_zone_length
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,126 @@
[general]
version = 2
name = Draft Print
definition = ultimaker3
[metadata]
type = quality
quality_type = draft
weight = -2
material = generic_pva_ultimaker3_BB_0.4
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 3
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.2
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.8
machine_nozzle_heat_up_speed = 1.5
material_print_temperature = 225
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = True
raft_acceleration = =acceleration_layer_0
raft_airgap = 0
raft_base_speed = 20
raft_base_thickness = 0.3
raft_interface_line_spacing = 0.5
raft_interface_line_width = 0.5
raft_interface_speed = 20
raft_interface_thickness = 0.2
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_speed = 25
raft_surface_layers = 1
retraction_amount = 2
retraction_count_max = 10
retraction_extrusion_window = =retraction_amount
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_min_travel = 5
retraction_prime_speed = 15
skin_overlap = 20
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 35
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 20 / 35)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 35)
speed_wall_0 = =math.ceil(speed_wall * 25 / 30)
speed_wall_x = =speed_wall
support_angle = 45
support_bottom_height = =layer_height * 2
support_bottom_stair_step_height = =layer_height
support_infill_rate = 25
support_interface_enable = True
support_join_distance = 3
support_line_width = =round(line_width * 0.4 / 0.35, 2)
support_offset = 3
support_pattern = triangles
support_use_towers = False
support_xy_distance = =wall_line_width_0 * 3
support_xy_distance_overhang = =wall_line_width_0 / 2
support_z_distance = 0
switch_extruder_prime_speed = 15
switch_extruder_retraction_amount = 8
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_top_distance = =support_z_distance
support_bottom_distance = =support_z_distance / 2
raft_surface_thickness = =resolveOrValue('layer_height')
cool_fan_speed_max = =cool_fan_speed
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
material_bed_temperature = 60
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_speed = 25
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,125 @@
[general]
version = 2
name = Fast Print
definition = ultimaker3
[metadata]
weight = -1
type = quality
quality_type = fast
material = generic_pva_ultimaker3_BB_0.4
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 3
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.15
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.8
machine_nozzle_heat_up_speed = 1.5
material_print_temperature = 220
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = True
raft_acceleration = =acceleration_layer_0
raft_airgap = 0
raft_base_speed = 20
raft_base_thickness = 0.3
raft_interface_line_spacing = 0.5
raft_interface_line_width = 0.5
raft_interface_speed = 20
raft_interface_thickness = 0.2
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_speed = 25
raft_surface_layers = 1
retraction_amount = 2
retraction_count_max = 10
retraction_extrusion_window = =retraction_amount
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_min_travel = 5
retraction_prime_speed = 15
skin_overlap = 15
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 35
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 20 / 35)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 35)
speed_wall_0 = =math.ceil(speed_wall * 25 / 30)
speed_wall_x = =speed_wall
support_angle = 45
support_bottom_height = =layer_height * 2
support_bottom_stair_step_height = =layer_height
support_infill_rate = 25
support_interface_enable = True
support_join_distance = 3
support_line_width = =round(line_width * 0.4 / 0.35, 2)
support_offset = 3
support_pattern = triangles
support_use_towers = False
support_xy_distance = =wall_line_width_0 * 3
support_xy_distance_overhang = =wall_line_width_0 / 2
support_z_distance = 0
switch_extruder_prime_speed = 15
switch_extruder_retraction_amount = 8
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_top_distance = =support_z_distance
support_bottom_distance = =support_z_distance / 2
raft_surface_thickness = =resolveOrValue('layer_height')
cool_fan_speed_max = =cool_fan_speed
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
material_bed_temperature = 60
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_speed = 25
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,126 @@
[general]
version = 2
name = High Quality
definition = ultimaker3
[metadata]
weight = 0
type = quality
quality_type = high
material = generic_pva_ultimaker3_BB_0.4
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 3
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.06
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.8
machine_nozzle_heat_up_speed = 1.5
material_print_temperature = 215
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = True
raft_acceleration = =acceleration_layer_0
raft_airgap = 0
raft_base_speed = 20
raft_base_thickness = 0.3
raft_interface_line_spacing = 0.5
raft_interface_line_width = 0.5
raft_interface_speed = 20
raft_interface_thickness = 0.2
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_speed = 25
raft_surface_layers = 1
retraction_amount = 2
retraction_count_max = 10
retraction_extrusion_window = =retraction_amount
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_min_travel = 5
retraction_prime_speed = 15
skin_overlap = 10
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 35
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 20 / 35)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 35)
speed_wall_0 = =math.ceil(speed_wall * 25 / 30)
speed_wall_x = =speed_wall
support_angle = 45
support_bottom_height = =layer_height * 2
support_bottom_stair_step_height = =layer_height
support_infill_rate = 35
support_interface_enable = True
support_join_distance = 3
support_line_width = =round(line_width * 0.4 / 0.35, 2)
support_offset = 3
support_pattern = triangles
support_use_towers = False
support_xy_distance = =wall_line_width_0 * 3
support_xy_distance_overhang = =wall_line_width_0 / 2
support_z_distance = 0
switch_extruder_prime_speed = 15
switch_extruder_retraction_amount = 8
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_top_distance = =support_z_distance
support_bottom_distance = =support_z_distance / 2
raft_surface_thickness = =resolveOrValue('layer_height')
cool_fan_speed_max = =cool_fan_speed
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
material_bed_temperature = 60
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_speed = 25
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,126 @@
[general]
version = 2
name = Normal Quality
definition = ultimaker3
[metadata]
weight = 0
type = quality
quality_type = normal
material = generic_pva_ultimaker3_BB_0.4
[values]
acceleration_enabled = True
acceleration_infill = =acceleration_print
acceleration_layer_0 = =acceleration_topbottom
acceleration_prime_tower = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_print = 4000
acceleration_support = =math.ceil(acceleration_print * 2000 / 4000)
acceleration_support_infill = =acceleration_support
acceleration_support_interface = =acceleration_topbottom
acceleration_topbottom = =math.ceil(acceleration_print * 500 / 4000)
acceleration_wall = =math.ceil(acceleration_print * 1000 / 4000)
acceleration_wall_0 = =math.ceil(acceleration_wall * 500 / 1000)
acceleration_wall_x = =acceleration_wall
adhesion_type = brim
brim_width = 3
cool_fan_full_at_height = =layer_height_0 + 4 * layer_height
cool_fan_speed = 50
cool_min_layer_time = 5
cool_min_speed = 5
infill_line_width = =round(line_width * 0.5 / 0.35, 2)
infill_pattern = triangles
infill_sparse_density = 20
infill_wipe_dist = 0
jerk_enabled = True
jerk_infill = =jerk_print
jerk_layer_0 = =jerk_topbottom
jerk_prime_tower = =math.ceil(jerk_print * 15 / 25)
jerk_print = 25
jerk_support = =math.ceil(jerk_print * 15 / 25)
jerk_support_infill = =jerk_support
jerk_support_interface = =jerk_topbottom
jerk_topbottom = =math.ceil(jerk_print * 5 / 25)
jerk_wall = =math.ceil(jerk_print * 10 / 25)
jerk_wall_0 = =math.ceil(jerk_wall * 5 / 10)
jerk_wall_x = =jerk_wall
layer_height = 0.1
layer_height_0 = =round(machine_nozzle_size / 1.5, 2)
line_width = =machine_nozzle_size * 0.875
machine_min_cool_heat_time_window = 15
machine_nozzle_cool_down_speed = 0.8
machine_nozzle_heat_up_speed = 1.5
material_print_temperature = 215
material_standby_temperature = 100
multiple_mesh_overlap = 0
ooze_shield_angle = 60
ooze_shield_enabled = False
prime_tower_enable = True
prime_tower_size = 15
prime_tower_wipe_enabled = True
raft_acceleration = =acceleration_layer_0
raft_airgap = 0
raft_base_speed = 20
raft_base_thickness = 0.3
raft_interface_line_spacing = 0.5
raft_interface_line_width = 0.5
raft_interface_speed = 20
raft_interface_thickness = 0.2
raft_jerk = =jerk_layer_0
raft_margin = 10
raft_speed = 25
raft_surface_layers = 1
retraction_amount = 2
retraction_count_max = 10
retraction_extrusion_window = =retraction_amount
retraction_hop = 2
retraction_hop_enabled = True
retraction_hop_only_when_collides = True
retraction_min_travel = 5
retraction_prime_speed = 15
skin_overlap = 10
speed_infill = =speed_print
speed_layer_0 = 20
speed_prime_tower = =speed_topbottom
speed_print = 35
speed_support = =speed_wall_0
speed_support_interface = =speed_topbottom
speed_topbottom = =math.ceil(speed_print * 20 / 35)
speed_travel = 250
speed_wall = =math.ceil(speed_print * 30 / 35)
speed_wall_0 = =math.ceil(speed_wall * 25 / 30)
speed_wall_x = =speed_wall
support_angle = 45
support_bottom_height = =layer_height * 2
support_bottom_stair_step_height = =layer_height
support_infill_rate = 30
support_interface_enable = True
support_join_distance = 3
support_line_width = =round(line_width * 0.4 / 0.35, 2)
support_offset = 3
support_pattern = triangles
support_use_towers = False
support_xy_distance = =wall_line_width_0 * 3
support_xy_distance_overhang = =wall_line_width_0 / 2
support_z_distance = 0
switch_extruder_prime_speed = 15
switch_extruder_retraction_amount = 8
top_bottom_thickness = 1
travel_avoid_distance = 3
travel_compensate_overlapping_walls_enabled = True
wall_0_inset = 0
wall_line_width_x = =round(line_width * 0.3 / 0.35, 2)
wall_thickness = 1
support_top_distance = =support_z_distance
support_bottom_distance = =support_z_distance / 2
raft_surface_thickness = =resolveOrValue('layer_height')
cool_fan_speed_max = =cool_fan_speed
cool_min_layer_time_fan_speed_max = 10
infill_overlap_mm = =infill_line_width * infill_overlap / 100 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0
material_bed_temperature = 60
ooze_shield_dist = 2
retraction_extra_prime_amount = 0
retraction_speed = 25
switch_extruder_retraction_speeds = 20

View file

@ -0,0 +1,11 @@
[general]
name = AA 0.4
version = 2
definition = ultimaker3
[metadata]
author = ultimaker
type = variant
[values]
machine_nozzle_size = 0.4

View file

@ -0,0 +1,11 @@
[general]
name = BB 0.4
version = 2
definition = ultimaker3
[metadata]
author = ultimaker
type = variant
[values]
machine_nozzle_size = 0.4

View file

@ -0,0 +1,11 @@
[general]
name = AA 0.4
version = 2
definition = ultimaker3_extended
[metadata]
author = ultimaker
type = variant
[values]
machine_nozzle_size = 0.4

View file

@ -0,0 +1,11 @@
[general]
name = BB 0.4
version = 2
definition = ultimaker3_extended
[metadata]
author = ultimaker
type = variant
[values]
machine_nozzle_size = 0.4