mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-19 04:09:40 +08:00
Merge branch 'main' into CURA-12502_unfolderize_win_startmenu
This commit is contained in:
commit
2b748a98fe
@ -10,7 +10,7 @@ requirements:
|
||||
- "pynest2d/5.10.0"
|
||||
requirements_internal:
|
||||
- "fdm_materials/5.11.0-alpha.0@ultimaker/testing"
|
||||
- "cura_private_data/5.10.0-alpha.0@internal/testing"
|
||||
- "cura_private_data/5.11.0-alpha.0@internal/testing"
|
||||
requirements_enterprise:
|
||||
- "native_cad_plugin/2.0.0"
|
||||
urls:
|
||||
|
29
conanfile.py
29
conanfile.py
@ -1,8 +1,10 @@
|
||||
import json
|
||||
import os
|
||||
import requests
|
||||
import yaml
|
||||
import tempfile
|
||||
import tarfile
|
||||
from datetime import datetime
|
||||
from io import StringIO
|
||||
from pathlib import Path
|
||||
from git import Repo
|
||||
@ -562,6 +564,30 @@ class CuraConan(ConanFile):
|
||||
self.cpp.package.bindirs = ["bin"]
|
||||
self.cpp.package.resdirs = ["resources", "plugins", "packaging"]
|
||||
|
||||
def _make_internal_distinct(self):
|
||||
test_colors_path = Path(self.source_folder, "resources", "themes", "daily_test_colors.json")
|
||||
if not test_colors_path.exists():
|
||||
print(f"Could not find '{str(test_colors_path)}'. Won't generate rotating colors for alpha builds.")
|
||||
return
|
||||
if "alpha" in self.version:
|
||||
with test_colors_path.open("r") as test_colors_file:
|
||||
test_colors = json.load(test_colors_file)
|
||||
biweekly_day = (datetime.now() - datetime(2025, 3, 14)).days % len(test_colors)
|
||||
for theme_dir in Path(self.source_folder, "resources", "themes").iterdir():
|
||||
if not theme_dir.is_dir():
|
||||
continue
|
||||
theme_path = Path(theme_dir, "theme.json")
|
||||
if not theme_path.exists():
|
||||
print(f"('Colorize-by-day' alpha builds): Skipping {str(theme_path)}, could not find file.")
|
||||
continue
|
||||
with theme_path.open("r") as theme_file:
|
||||
theme = json.load(theme_file)
|
||||
if theme["colors"]:
|
||||
theme["colors"]["main_window_header_background"] = test_colors[biweekly_day]
|
||||
with theme_path.open("w") as theme_file:
|
||||
json.dump(theme, theme_file)
|
||||
test_colors_path.unlink()
|
||||
|
||||
def generate(self):
|
||||
copy(self, "cura_app.py", self.source_folder, str(self._script_dir))
|
||||
|
||||
@ -581,6 +607,9 @@ class CuraConan(ConanFile):
|
||||
copy(self, "bundled_*.json", native_cad_plugin.resdirs[1],
|
||||
str(Path(self.source_folder, "resources", "bundled_packages")), keep_path = False)
|
||||
|
||||
# Make internal versions built on different days distinct, so people don't get confused while testing.
|
||||
self._make_internal_distinct()
|
||||
|
||||
# Copy resources of cura_binary_data
|
||||
cura_binary_data = self.dependencies["cura_binary_data"].cpp_info
|
||||
copy(self, "*", cura_binary_data.resdirs[0], str(self._share_dir.joinpath("cura")), keep_path = True)
|
||||
|
@ -127,6 +127,7 @@ class AuthorizationRequestHandler(BaseHTTPRequestHandler):
|
||||
def _sendHeaders(self, status: "ResponseStatus", content_type: str, redirect_uri: str = None) -> None:
|
||||
self.send_response(status.code, status.message)
|
||||
self.send_header("Content-type", content_type)
|
||||
self.send_header("Strict-Transport-Security", "max-age=900")
|
||||
if redirect_uri:
|
||||
self.send_header("Location", redirect_uri)
|
||||
self.end_headers()
|
||||
|
@ -258,87 +258,11 @@ class MakerbotWriter(MeshWriter):
|
||||
|
||||
meta["preferences"] = dict()
|
||||
bounds = application.getBuildVolume().getBoundingBox()
|
||||
intent = CuraApplication.getInstance().getIntentManager().currentIntentCategory
|
||||
meta["preferences"]["instance0"] = {
|
||||
"machineBounds": [bounds.right, bounds.front, bounds.left, bounds.back] if bounds is not None else None,
|
||||
"printMode": intent
|
||||
"printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory,
|
||||
}
|
||||
|
||||
if file_format == "application/x-makerbot":
|
||||
accel_overrides = meta["accel_overrides"] = {}
|
||||
if intent in ['highspeed', 'highspeedsolid']:
|
||||
accel_overrides['do_input_shaping'] = True
|
||||
accel_overrides['do_corner_rounding'] = True
|
||||
bead_mode_overrides = accel_overrides["bead_mode"] = {}
|
||||
|
||||
accel_enabled = global_stack.getProperty('acceleration_enabled', 'value')
|
||||
|
||||
if accel_enabled:
|
||||
global_accel_setting = global_stack.getProperty('acceleration_print', 'value')
|
||||
accel_overrides["rate_mm_per_s_sq"] = {
|
||||
"x": global_accel_setting,
|
||||
"y": global_accel_setting
|
||||
}
|
||||
|
||||
if global_stack.getProperty('acceleration_travel_enabled', 'value'):
|
||||
travel_accel_setting = global_stack.getProperty('acceleration_travel', 'value')
|
||||
bead_mode_overrides['Travel Move'] = {
|
||||
"rate_mm_per_s_sq": {
|
||||
"x": travel_accel_setting,
|
||||
"y": travel_accel_setting
|
||||
}
|
||||
}
|
||||
|
||||
jerk_enabled = global_stack.getProperty('jerk_enabled', 'value')
|
||||
if jerk_enabled:
|
||||
global_jerk_setting = global_stack.getProperty('jerk_print', 'value')
|
||||
accel_overrides["max_speed_change_mm_per_s"] = {
|
||||
"x": global_jerk_setting,
|
||||
"y": global_jerk_setting
|
||||
}
|
||||
|
||||
if global_stack.getProperty('jerk_travel_enabled', 'value'):
|
||||
travel_jerk_setting = global_stack.getProperty('jerk_travel', 'value')
|
||||
if 'Travel Move' not in bead_mode_overrides:
|
||||
bead_mode_overrides['Travel Move' ] = {}
|
||||
bead_mode_overrides['Travel Move'].update({
|
||||
"max_speed_change_mm_per_s": {
|
||||
"x": travel_jerk_setting,
|
||||
"y": travel_jerk_setting
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
# Get bead mode settings per extruder
|
||||
available_bead_modes = {
|
||||
"infill": "FILL",
|
||||
"prime_tower": "PRIME_TOWER",
|
||||
"roofing": "TOP_SURFACE",
|
||||
"support_infill": "SUPPORT",
|
||||
"support_interface": "SUPPORT_INTERFACE",
|
||||
"wall_0": "WALL_OUTER",
|
||||
"wall_x": "WALL_INNER",
|
||||
"skirt_brim": "SKIRT"
|
||||
}
|
||||
for idx, extruder in enumerate(extruders):
|
||||
for bead_mode_setting, bead_mode_tag in available_bead_modes.items():
|
||||
ext_specific_tag = "%s_%s" % (bead_mode_tag, idx)
|
||||
if accel_enabled or jerk_enabled:
|
||||
bead_mode_overrides[ext_specific_tag] = {}
|
||||
|
||||
if accel_enabled:
|
||||
accel_val = extruder.getProperty('acceleration_%s' % bead_mode_setting, 'value')
|
||||
bead_mode_overrides[ext_specific_tag]["rate_mm_per_s_sq"] = {
|
||||
"x": accel_val,
|
||||
"y": accel_val
|
||||
}
|
||||
if jerk_enabled:
|
||||
jerk_val = extruder.getProperty('jerk_%s' % bead_mode_setting, 'value')
|
||||
bead_mode_overrides[ext_specific_tag][ "max_speed_change_mm_per_s"] = {
|
||||
"x": jerk_val,
|
||||
"y": jerk_val
|
||||
}
|
||||
|
||||
meta["miracle_config"] = {"gaggles": {"instance0": {}}}
|
||||
|
||||
version_info = dict()
|
||||
|
@ -21,7 +21,7 @@ def main() -> None:
|
||||
parser.add_argument("--diagnose", action="store_true", help="Diagnose the files")
|
||||
parser.add_argument("--deleted", action="store_true", help="Check for deleted files")
|
||||
parser.add_argument("--fix", action="store_true", help="Attempt to apply the suggested fixes on the files")
|
||||
parser.add_argument("Files", metavar="F", type=Path, nargs="+", help="Files or directories to format")
|
||||
parser.add_argument("Files", type=Path, nargs="+", help="Files or directories to format")
|
||||
|
||||
args = parser.parse_args()
|
||||
files = extractFilePaths(args.Files)
|
||||
@ -39,7 +39,7 @@ def main() -> None:
|
||||
return
|
||||
|
||||
with open(setting_path, "r") as f:
|
||||
settings = yaml.load(f, yaml.FullLoader)
|
||||
settings = yaml.safe_load(f)
|
||||
|
||||
full_body_check = {"Diagnostics": []}
|
||||
comments_check = {"Error Files": []}
|
||||
|
@ -33,14 +33,12 @@
|
||||
{
|
||||
"acceleration_enabled":
|
||||
{
|
||||
"enabled": true,
|
||||
"enabled": false,
|
||||
"value": true
|
||||
},
|
||||
"acceleration_infill":
|
||||
{
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"enabled": false,
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_layer_0":
|
||||
@ -50,18 +48,12 @@
|
||||
},
|
||||
"acceleration_prime_tower":
|
||||
{
|
||||
"enabled": "acceleration_enabled and prime_tower_enable and extruders_enabled_count > 1",
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"enabled": false,
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_print":
|
||||
{
|
||||
"enabled": "acceleration_enabled",
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"enabled": false,
|
||||
"value": 800
|
||||
},
|
||||
"acceleration_print_layer_0":
|
||||
@ -71,49 +63,33 @@
|
||||
},
|
||||
"acceleration_roofing":
|
||||
{
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"enabled": false,
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_skirt_brim":
|
||||
{
|
||||
"enabled": "acceleration_enabled and (adhesion_type == 'skirt' or adhesion_type == 'brim')",
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"value": 800
|
||||
},
|
||||
"acceleration_support":
|
||||
{
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"enabled": false,
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_support_bottom":
|
||||
{
|
||||
"enabled": false,
|
||||
"value": "acceleration_support_interface"
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_support_infill":
|
||||
{
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"value": "acceleration_support"
|
||||
"enabled": false,
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_support_interface":
|
||||
{
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"value": "acceleration_support"
|
||||
"enabled": false,
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_support_roof":
|
||||
{
|
||||
"enabled": false,
|
||||
"value": "acceleration_support_interface"
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_topbottom":
|
||||
{
|
||||
@ -122,10 +98,7 @@
|
||||
},
|
||||
"acceleration_travel":
|
||||
{
|
||||
"enabled": "acceleration_enabled",
|
||||
"maximum_value": 5000,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"enabled": false,
|
||||
"value": 5000
|
||||
},
|
||||
"acceleration_travel_enabled":
|
||||
@ -140,37 +113,28 @@
|
||||
},
|
||||
"acceleration_wall":
|
||||
{
|
||||
"enabled": "acceleration_enabled",
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"enabled": false,
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_wall_0":
|
||||
{
|
||||
"enabled": "acceleration_enabled",
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"value": "acceleration_wall"
|
||||
"enabled": false,
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_wall_0_roofing":
|
||||
{
|
||||
"enabled": false,
|
||||
"value": "acceleration_wall"
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_wall_x":
|
||||
{
|
||||
"enabled": "acceleration_enabled",
|
||||
"maximum_value": 3500,
|
||||
"minimum_value": 200,
|
||||
"minimum_value_warning": 750,
|
||||
"value": "acceleration_wall"
|
||||
"enabled": false,
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"acceleration_wall_x_roofing":
|
||||
{
|
||||
"enabled": false,
|
||||
"value": "acceleration_wall"
|
||||
"value": "acceleration_print"
|
||||
},
|
||||
"adhesion_extruder_nr":
|
||||
{
|
||||
@ -239,15 +203,12 @@
|
||||
"inset_direction": { "value": "'inside_out'" },
|
||||
"jerk_enabled":
|
||||
{
|
||||
"enabled": true,
|
||||
"enabled": false,
|
||||
"value": true
|
||||
},
|
||||
"jerk_infill":
|
||||
{
|
||||
"enabled": "jerk_enabled",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_layer_0":
|
||||
@ -257,19 +218,13 @@
|
||||
},
|
||||
"jerk_prime_tower":
|
||||
{
|
||||
"enabled": "jerk_enabled and prime_tower_enable and extruders_enabled_count > 1",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_print":
|
||||
{
|
||||
"enabled": "jerk_enabled",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"value": 12.5
|
||||
"enabled": false,
|
||||
"value": 6.25
|
||||
},
|
||||
"jerk_print_layer_0":
|
||||
{
|
||||
@ -278,50 +233,33 @@
|
||||
},
|
||||
"jerk_roofing":
|
||||
{
|
||||
"enabled": "jerk_enabled",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_skirt_brim":
|
||||
{
|
||||
"enabled": "jerk_enabled and (adhesion_type == 'brim' or adhesion_type == 'skirt')",
|
||||
"value": 12.5
|
||||
},
|
||||
"jerk_support":
|
||||
{
|
||||
"enabled": "jerk_enabled and support_enable",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_support_bottom":
|
||||
{
|
||||
"enabled": false,
|
||||
"value": "jerk_support_interface"
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_support_infill":
|
||||
{
|
||||
"enabled": "jerk_enabled and support_enable",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"value": "jerk_support"
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_support_interface":
|
||||
{
|
||||
"enabled": "jerk_enabled and support_enable",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"value": "jerk_support"
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_support_roof":
|
||||
{
|
||||
"enabled": false,
|
||||
"value": "jerk_support_interface"
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_topbottom":
|
||||
{
|
||||
@ -330,11 +268,8 @@
|
||||
},
|
||||
"jerk_travel":
|
||||
{
|
||||
"enabled": "jerk_enabled",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"value": 12.5
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_travel_enabled":
|
||||
{
|
||||
@ -348,18 +283,12 @@
|
||||
},
|
||||
"jerk_wall":
|
||||
{
|
||||
"enabled": "jerk_enabled",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_wall_0":
|
||||
{
|
||||
"enabled": "jerk_enabled",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_wall_0_roofing":
|
||||
@ -369,10 +298,7 @@
|
||||
},
|
||||
"jerk_wall_x":
|
||||
{
|
||||
"enabled": "jerk_enabled",
|
||||
"maximum_value": 35,
|
||||
"minimum_value": 5,
|
||||
"minimum_value_warning": 12,
|
||||
"enabled": false,
|
||||
"value": "jerk_print"
|
||||
},
|
||||
"jerk_wall_x_roofing":
|
||||
@ -391,7 +317,7 @@
|
||||
"machine_heated_bed": { "default_value": false },
|
||||
"machine_heated_build_volume": { "default_value": true },
|
||||
"machine_height": { "default_value": 196.749 },
|
||||
"machine_min_cool_heat_time_window": { "value": 15 },
|
||||
"machine_min_cool_heat_time_window": { "value": 0 },
|
||||
"machine_name": { "default_value": "UltiMaker Method" },
|
||||
"machine_nozzle_cool_down_speed": { "value": 0.8 },
|
||||
"machine_nozzle_heat_up_speed": { "value": 3.5 },
|
||||
@ -591,86 +517,16 @@
|
||||
"skirt_height": { "value": 3 },
|
||||
"small_skin_width": { "value": 4 },
|
||||
"speed_equalize_flow_width_factor": { "value": 0 },
|
||||
"speed_infill":
|
||||
{
|
||||
"maximum_value": 350,
|
||||
"maximum_value_warning": 325
|
||||
},
|
||||
"speed_prime_tower":
|
||||
{
|
||||
"maximum_value": 250,
|
||||
"maximum_value_warning": 200,
|
||||
"value": "speed_topbottom"
|
||||
},
|
||||
"speed_print":
|
||||
{
|
||||
"maximum_value": 350,
|
||||
"maximum_value_warning": 325,
|
||||
"value": 50
|
||||
},
|
||||
"speed_roofing":
|
||||
{
|
||||
"maximum_value": 300,
|
||||
"maximum_value_warning": 275,
|
||||
"value": "speed_wall_0"
|
||||
},
|
||||
"speed_support":
|
||||
{
|
||||
"maximum_value": 350,
|
||||
"maximum_value_warning": 325,
|
||||
"value": "speed_wall"
|
||||
},
|
||||
"speed_support_infill":
|
||||
{
|
||||
"maximum_value": 350,
|
||||
"maximum_value_warning": 325
|
||||
},
|
||||
"speed_support_interface":
|
||||
{
|
||||
"maximum_value": 260,
|
||||
"maximum_value_warning": 255,
|
||||
"value": "speed_topbottom"
|
||||
},
|
||||
"speed_support_roof":
|
||||
{
|
||||
"maximum_value": 260,
|
||||
"maximum_value_warning": 255
|
||||
},
|
||||
"speed_topbottom":
|
||||
{
|
||||
"maximum_value": 260,
|
||||
"maximum_value_warning": 255,
|
||||
"value": "speed_wall"
|
||||
},
|
||||
"speed_prime_tower": { "value": "speed_topbottom" },
|
||||
"speed_print": { "value": 50 },
|
||||
"speed_roofing": { "value": "speed_wall_0" },
|
||||
"speed_support": { "value": "speed_wall" },
|
||||
"speed_support_interface": { "value": "speed_topbottom" },
|
||||
"speed_topbottom": { "value": "speed_wall" },
|
||||
"speed_travel": { "value": 250 },
|
||||
"speed_wall":
|
||||
{
|
||||
"maximum_value": 260,
|
||||
"maximum_value_warning": 255,
|
||||
"value": "speed_print * 40/50"
|
||||
},
|
||||
"speed_wall_0":
|
||||
{
|
||||
"maximum_value": 260,
|
||||
"maximum_value_warning": 255,
|
||||
"value": "speed_wall * 30/40"
|
||||
},
|
||||
"speed_wall_0_roofing":
|
||||
{
|
||||
"maximum_value": 260,
|
||||
"maximum_value_warning": 255
|
||||
},
|
||||
"speed_wall_x":
|
||||
{
|
||||
"maximum_value": 260,
|
||||
"maximum_value_warning": 255,
|
||||
"value": "speed_wall"
|
||||
},
|
||||
"speed_wall_x_roofing":
|
||||
{
|
||||
"maximum_value": 260,
|
||||
"maximum_value_warning": 255
|
||||
},
|
||||
"speed_wall": { "value": "speed_print * 40/50" },
|
||||
"speed_wall_0": { "value": "speed_wall * 30/40" },
|
||||
"speed_wall_x": { "value": "speed_wall" },
|
||||
"support_angle": { "value": 40 },
|
||||
"support_bottom_height": { "value": "2*support_infill_sparse_thickness" },
|
||||
"support_bottom_line_width":
|
||||
|
53
resources/definitions/ultimaker_s6.def.json
Normal file
53
resources/definitions/ultimaker_s6.def.json
Normal file
@ -0,0 +1,53 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "UltiMaker S6",
|
||||
"inherits": "ultimaker_s8",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "UltiMaker",
|
||||
"manufacturer": "Ultimaker B.V.",
|
||||
"file_formats": "application/x-ufp;text/x-gcode",
|
||||
"platform": "ultimaker_s5_platform.obj",
|
||||
"bom_numbers": [
|
||||
10700
|
||||
],
|
||||
"firmware_update_info":
|
||||
{
|
||||
"check_urls": [ "https://software.ultimaker.com/releases/firmware/5078167/stable/um-update.swu.version" ],
|
||||
"id": 5078167,
|
||||
"update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update"
|
||||
},
|
||||
"first_start_actions": [ "DiscoverUM3Action" ],
|
||||
"has_machine_quality": true,
|
||||
"has_materials": true,
|
||||
"has_variants": true,
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "ultimaker_s6_extruder_left",
|
||||
"1": "ultimaker_s6_extruder_right"
|
||||
},
|
||||
"nozzle_offsetting_for_disallowed_areas": false,
|
||||
"platform_offset": [
|
||||
0,
|
||||
-30,
|
||||
-10
|
||||
],
|
||||
"platform_texture": "UltimakerS6backplate.png",
|
||||
"preferred_material": "ultimaker_pla_blue",
|
||||
"preferred_variant_name": "AA+ 0.4",
|
||||
"quality_definition": "ultimaker_s8",
|
||||
"supported_actions": [ "DiscoverUM3Action" ],
|
||||
"supports_material_export": true,
|
||||
"supports_network_connection": true,
|
||||
"supports_usb_connection": false,
|
||||
"variants_name": "Print Core",
|
||||
"variants_name_has_translation": true,
|
||||
"weight": -2
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"adhesion_type": { "value": "'brim'" },
|
||||
"machine_name": { "default_value": "UltiMaker S6" }
|
||||
}
|
||||
}
|
@ -47,7 +47,7 @@
|
||||
"overrides":
|
||||
{
|
||||
"default_material_print_temperature": { "maximum_value_warning": "320" },
|
||||
"machine_name": { "default_value": "Ultimaker S7" },
|
||||
"machine_name": { "default_value": "UltiMaker S7" },
|
||||
"material_print_temperature_layer_0": { "maximum_value_warning": "320" }
|
||||
}
|
||||
}
|
@ -1,11 +1,11 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Ultimaker S8",
|
||||
"name": "UltiMaker S8",
|
||||
"inherits": "ultimaker_s7",
|
||||
"metadata":
|
||||
{
|
||||
"visible": true,
|
||||
"author": "Ultimaker",
|
||||
"author": "UltiMaker",
|
||||
"manufacturer": "Ultimaker B.V.",
|
||||
"file_formats": "application/x-ufp;text/x-gcode",
|
||||
"platform": "ultimaker_s7_platform.obj",
|
||||
@ -385,7 +385,7 @@
|
||||
"unit": "m/s\u00b3",
|
||||
"value": "20000 if machine_gcode_flavor == 'Cheetah' else 100"
|
||||
},
|
||||
"machine_name": { "default_value": "Ultimaker S8" },
|
||||
"machine_name": { "default_value": "UltiMaker S8" },
|
||||
"machine_nozzle_cool_down_speed": { "default_value": 1.3 },
|
||||
"machine_nozzle_heat_up_speed": { "default_value": 0.6 },
|
||||
"machine_start_gcode": { "default_value": "M213 U0.1 ;undercut 0.1mm" },
|
||||
@ -412,7 +412,7 @@
|
||||
"retraction_hop": { "value": 1 },
|
||||
"retraction_hop_after_extruder_switch_height": { "value": 2 },
|
||||
"retraction_hop_enabled": { "value": true },
|
||||
"retraction_min_travel": { "value": "5 if support_enable and support_structure=='tree' else line_width * 2" },
|
||||
"retraction_min_travel": { "value": "5 if support_enable and support_structure=='tree' else line_width * 2.5" },
|
||||
"retraction_prime_speed": { "value": 15 },
|
||||
"skin_edge_support_thickness": { "value": 0 },
|
||||
"skin_material_flow": { "value": 95 },
|
||||
@ -500,13 +500,13 @@
|
||||
"speed_travel":
|
||||
{
|
||||
"maximum_value": 500,
|
||||
"maximum_value_warning": 400,
|
||||
"value": 400
|
||||
"maximum_value_warning": 300,
|
||||
"value": 300
|
||||
},
|
||||
"speed_travel_layer_0":
|
||||
{
|
||||
"maximum_value": 500,
|
||||
"maximum_value_warning": 400,
|
||||
"maximum_value_warning": 300,
|
||||
"value": 150
|
||||
},
|
||||
"speed_wall":
|
||||
|
31
resources/extruders/ultimaker_s6_extruder_left.def.json
Normal file
31
resources/extruders/ultimaker_s6_extruder_left.def.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 1",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "ultimaker_s6",
|
||||
"position": "0"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 0,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"extruder_prime_pos_x": { "default_value": -3 },
|
||||
"extruder_prime_pos_y": { "default_value": 6 },
|
||||
"extruder_prime_pos_z": { "default_value": 2 },
|
||||
"machine_extruder_end_pos_abs": { "default_value": true },
|
||||
"machine_extruder_end_pos_x": { "default_value": 330 },
|
||||
"machine_extruder_end_pos_y": { "default_value": 237 },
|
||||
"machine_extruder_start_code": { "value": "\"M214 D0 K{material_pressure_advance_factor} R0.04\"" },
|
||||
"machine_extruder_start_pos_abs": { "default_value": true },
|
||||
"machine_extruder_start_pos_x": { "default_value": 330 },
|
||||
"machine_extruder_start_pos_y": { "default_value": 237 },
|
||||
"machine_nozzle_head_distance": { "default_value": 2.7 },
|
||||
"machine_nozzle_offset_x": { "default_value": 0 },
|
||||
"machine_nozzle_offset_y": { "default_value": 0 }
|
||||
}
|
||||
}
|
31
resources/extruders/ultimaker_s6_extruder_right.def.json
Normal file
31
resources/extruders/ultimaker_s6_extruder_right.def.json
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
"version": 2,
|
||||
"name": "Extruder 2",
|
||||
"inherits": "fdmextruder",
|
||||
"metadata":
|
||||
{
|
||||
"machine": "ultimaker_s6",
|
||||
"position": "1"
|
||||
},
|
||||
"overrides":
|
||||
{
|
||||
"extruder_nr":
|
||||
{
|
||||
"default_value": 1,
|
||||
"maximum_value": "1"
|
||||
},
|
||||
"extruder_prime_pos_x": { "default_value": 333 },
|
||||
"extruder_prime_pos_y": { "default_value": 6 },
|
||||
"extruder_prime_pos_z": { "default_value": 2 },
|
||||
"machine_extruder_end_pos_abs": { "default_value": true },
|
||||
"machine_extruder_end_pos_x": { "default_value": 330 },
|
||||
"machine_extruder_end_pos_y": { "default_value": 219 },
|
||||
"machine_extruder_start_code": { "value": "\"M214 D0 K{material_pressure_advance_factor} R0.04\"" },
|
||||
"machine_extruder_start_pos_abs": { "default_value": true },
|
||||
"machine_extruder_start_pos_x": { "default_value": 330 },
|
||||
"machine_extruder_start_pos_y": { "default_value": 219 },
|
||||
"machine_nozzle_head_distance": { "default_value": 4.2 },
|
||||
"machine_nozzle_offset_x": { "default_value": 22 },
|
||||
"machine_nozzle_offset_y": { "default_value": 0 }
|
||||
}
|
||||
}
|
@ -4284,7 +4284,7 @@ msgstr "Interface du support"
|
||||
|
||||
msgctxt "@action:label"
|
||||
msgid "Support Type"
|
||||
msgstr "Type de prise en charge"
|
||||
msgstr "Structure du support"
|
||||
|
||||
msgctxt "@label Description for application dependency"
|
||||
msgid "Support library for faster math"
|
||||
|
@ -8,7 +8,7 @@ msgstr ""
|
||||
"Project-Id-Version: Cura 5.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-21 15:37+0100\n"
|
||||
"PO-Revision-Date: 2024-10-28 04:18+0100\n"
|
||||
"PO-Revision-Date: 2025-03-23 17:45+0100\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language: pt_BR\n"
|
||||
@ -16,7 +16,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.4.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
msgctxt "@title:label"
|
||||
msgid " "
|
||||
@ -183,7 +183,7 @@ msgstr "Visão 3D"
|
||||
|
||||
msgctxt "name"
|
||||
msgid "3DConnexion mouses"
|
||||
msgstr ""
|
||||
msgstr "Mouses 3DConnexion"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "3MF File"
|
||||
@ -483,7 +483,7 @@ msgstr "Permite carregar e exibir arquivos G-Code."
|
||||
|
||||
msgctxt "description"
|
||||
msgid "Allows working with 3D mouses inside Cura."
|
||||
msgstr ""
|
||||
msgstr "Permite trabalhar com mouses 3D dentro do Cura."
|
||||
|
||||
msgctxt "@option:discardOrKeep"
|
||||
msgid "Always ask me this"
|
||||
@ -1603,7 +1603,7 @@ msgstr "Extrusor %1"
|
||||
|
||||
msgctxt "@label"
|
||||
msgid "Extruder Change duration"
|
||||
msgstr ""
|
||||
msgstr "Duração de Mudança do Extrusor"
|
||||
|
||||
msgctxt "@title:label"
|
||||
msgid "Extruder End G-code"
|
||||
@ -1615,7 +1615,7 @@ msgstr "Duração do G-code Final do Extrusor"
|
||||
|
||||
msgctxt "@title:label"
|
||||
msgid "Extruder Prestart G-code"
|
||||
msgstr ""
|
||||
msgstr "G-Code de Pré-Início do Extrusor"
|
||||
|
||||
msgctxt "@title:label"
|
||||
msgid "Extruder Start G-code"
|
||||
@ -1808,7 +1808,7 @@ msgstr "Primeira disponível"
|
||||
|
||||
msgctxt "@option:check"
|
||||
msgid "Flip model's toolhandle Y axis (restart required)"
|
||||
msgstr ""
|
||||
msgstr "Trocar o eixo Y da ferramenta do modelo (reinício requerido)"
|
||||
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Flow"
|
||||
@ -2300,7 +2300,7 @@ msgstr "Nivelar mesa"
|
||||
|
||||
msgctxt "@title:window The argument is a package name, and the second is the version."
|
||||
msgid "License for %1 %2"
|
||||
msgstr ""
|
||||
msgstr "Licença para %1 %2"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Lighter is higher"
|
||||
@ -2408,7 +2408,7 @@ msgstr "Gerador de Makerbot Printfile"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Makerbot Replicator+ Printfile"
|
||||
msgstr ""
|
||||
msgstr "Makerbot Replicator+ Arquivo de Impressão"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Makerbot Sketch Printfile"
|
||||
@ -4029,7 +4029,7 @@ msgstr "Devem falhas de fatiamento serem automaticamente relatadas à Ultimaker?
|
||||
|
||||
msgctxt "@info:tooltip"
|
||||
msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before."
|
||||
msgstr ""
|
||||
msgstr "Deverá o eixo Y de translação da ferramenta trocar de orientação? Isto afetará apenas a coordenada Y do modelo, todos os outros ajustes tais como ajustes de Cabeça de Impressão não serão afetados e ainda funcionarão como antes."
|
||||
|
||||
msgctxt "@info:tooltip"
|
||||
msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
|
||||
@ -4269,7 +4269,7 @@ msgstr "G-Code Inicial"
|
||||
|
||||
msgctxt "@label"
|
||||
msgid "Start GCode must be first"
|
||||
msgstr ""
|
||||
msgstr "O GCode de Início deve ser o primeiro"
|
||||
|
||||
msgctxt "@label"
|
||||
msgid "Start the slicing process"
|
||||
@ -4677,7 +4677,7 @@ msgstr "Esta configuração não está disponível porque %1 não foi reconhecid
|
||||
|
||||
msgctxt "@label"
|
||||
msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit <a href='%2'>the support page</a> to check which cores this printer-type supports w.r.t. new slices."
|
||||
msgstr ""
|
||||
msgstr "Esta configuração não está disponível porque há uma incompatibilidade ou outro problema com o core-type %1. Por favor visite a <a href='%2'>página de suporte</a> para verificar que núcleos este tipo de impressora suporta de acordo com as novas fatias."
|
||||
|
||||
msgctxt "@text:window"
|
||||
msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?"
|
||||
@ -5247,7 +5247,7 @@ msgstr "Atualiza configurações do Cura 5.8 para o Cura 5.9."
|
||||
|
||||
msgctxt "description"
|
||||
msgid "Upgrades configurations from Cura 5.9 to Cura 5.10"
|
||||
msgstr ""
|
||||
msgstr "Atualiza configurações do Cura 5.9 para o Cura 5.10"
|
||||
|
||||
msgctxt "@action:button"
|
||||
msgid "Upload custom Firmware"
|
||||
@ -5391,7 +5391,7 @@ msgstr "Atualização de Versão de 5.8 para 5.9"
|
||||
|
||||
msgctxt "name"
|
||||
msgid "Version Upgrade 5.9 to 5.10"
|
||||
msgstr ""
|
||||
msgstr "Atualização de Versão de 5.9 para 5.10"
|
||||
|
||||
msgctxt "@button"
|
||||
msgid "View printers in Digital Factory"
|
||||
@ -5556,11 +5556,11 @@ msgstr "Y (Profundidade)"
|
||||
|
||||
msgctxt "@label"
|
||||
msgid "Y max ( '+' towards front)"
|
||||
msgstr ""
|
||||
msgstr "Y máximo ('+' indo para a frente)"
|
||||
|
||||
msgctxt "@label"
|
||||
msgid "Y min ( '-' towards back)"
|
||||
msgstr ""
|
||||
msgstr "Y mínimo ('-' indo para trás)"
|
||||
|
||||
msgctxt "@info"
|
||||
msgid "Yes"
|
||||
|
@ -7,7 +7,7 @@ msgstr ""
|
||||
"Project-Id-Version: Cura 5.1\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2025-02-21 15:37+0000\n"
|
||||
"PO-Revision-Date: 2024-10-28 04:20+0100\n"
|
||||
"PO-Revision-Date: 2025-03-23 17:27+0100\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language: pt_BR\n"
|
||||
@ -15,7 +15,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.4.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
msgctxt "platform_adhesion description"
|
||||
msgid "Adhesion"
|
||||
@ -43,7 +43,7 @@ msgstr "Extrusor"
|
||||
|
||||
msgctxt "machine_extruder_change_duration label"
|
||||
msgid "Extruder Change duration"
|
||||
msgstr ""
|
||||
msgstr "Duração da Mudança do Extrusor"
|
||||
|
||||
msgctxt "machine_extruder_end_code label"
|
||||
msgid "Extruder End G-Code"
|
||||
@ -67,7 +67,7 @@ msgstr "Posição Y Final do Extrusor"
|
||||
|
||||
msgctxt "machine_extruder_prestart_code label"
|
||||
msgid "Extruder Prestart G-Code"
|
||||
msgstr ""
|
||||
msgstr "G-Code de Pré-Início do Extrusor"
|
||||
|
||||
msgctxt "extruder_prime_pos_x label"
|
||||
msgid "Extruder Prime X Position"
|
||||
@ -151,7 +151,7 @@ msgstr "Deslocamento Y do Bico"
|
||||
|
||||
msgctxt "machine_extruder_prestart_code description"
|
||||
msgid "Prestart g-code to execute before switching to this extruder."
|
||||
msgstr ""
|
||||
msgstr "G-Code a executar antes de trocar para este extrusor."
|
||||
|
||||
msgctxt "machine_extruder_start_code description"
|
||||
msgid "Start g-code to execute when switching to this extruder."
|
||||
@ -223,7 +223,7 @@ msgstr "A coordenada Y da posição de início quando se liga o extrusor."
|
||||
|
||||
msgctxt "machine_extruder_change_duration description"
|
||||
msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur."
|
||||
msgstr ""
|
||||
msgstr "Ao usar uma configuração multiferramentas, este valor é o tempo da mudança de ferramentas em segundos. O valor será adicionado ao tempo estimado baseado no número de mudanças que ocorrem."
|
||||
|
||||
#~ msgctxt "machine_extruder_end_code description"
|
||||
#~ msgid "End g-code to execute whenever turning the extruder off."
|
||||
|
@ -7,7 +7,7 @@ msgstr ""
|
||||
"Project-Id-Version: Cura 5.7\n"
|
||||
"Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2025-02-21 15:37+0000\n"
|
||||
"PO-Revision-Date: 2024-10-29 03:52+0100\n"
|
||||
"PO-Revision-Date: 2025-03-23 23:56+0100\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language: pt_BR\n"
|
||||
@ -15,7 +15,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 3.4.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
msgctxt "prime_tower_mode description"
|
||||
msgid "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>"
|
||||
@ -39,7 +39,7 @@ msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentad
|
||||
|
||||
msgctxt "flooring_angles description"
|
||||
msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
|
||||
msgstr ""
|
||||
msgstr "Uma lista de linhas de direções inteiras a usar quando as camadas de contorno da superfície inferior usa os padrões de linhas ou ziguezague. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela reinicia do começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O valor default é uma lista vazia que significa usar os ângulos default tradicionais (45 e 135 graus)."
|
||||
|
||||
msgctxt "roofing_angles description"
|
||||
msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
|
||||
@ -311,71 +311,71 @@ msgstr "Largura de Remoção do Contorno Inferior"
|
||||
|
||||
msgctxt "acceleration_wall_x_flooring label"
|
||||
msgid "Bottom Surface Inner Wall Acceleration"
|
||||
msgstr ""
|
||||
msgstr "Aceleração da Parede Interna da Superfície Inferior"
|
||||
|
||||
msgctxt "jerk_wall_x_flooring label"
|
||||
msgid "Bottom Surface Inner Wall Jerk"
|
||||
msgstr ""
|
||||
msgstr "Jerk da Parede Interna da Superfície Inferior"
|
||||
|
||||
msgctxt "speed_wall_x_flooring label"
|
||||
msgid "Bottom Surface Inner Wall Speed"
|
||||
msgstr ""
|
||||
msgstr "Velocidade da Parede Interna da Superfície Inferior"
|
||||
|
||||
msgctxt "wall_x_material_flow_flooring label"
|
||||
msgid "Bottom Surface Inner Wall(s) Flow"
|
||||
msgstr ""
|
||||
msgstr "Fluxo da(s) Parede(s) Interna(s) da Superfície Inferior"
|
||||
|
||||
msgctxt "acceleration_wall_0_flooring label"
|
||||
msgid "Bottom Surface Outer Wall Acceleration"
|
||||
msgstr ""
|
||||
msgstr "Aceleração da Parede Externa da Superfície Inferior"
|
||||
|
||||
msgctxt "wall_0_material_flow_flooring label"
|
||||
msgid "Bottom Surface Outer Wall Flow"
|
||||
msgstr ""
|
||||
msgstr "Fluxo da Parede Externa da Superfície Inferior"
|
||||
|
||||
msgctxt "jerk_wall_0_flooring label"
|
||||
msgid "Bottom Surface Outer Wall Jerk"
|
||||
msgstr ""
|
||||
msgstr "Jerk da Parede Externa da Superfície Inferior"
|
||||
|
||||
msgctxt "speed_wall_0_flooring label"
|
||||
msgid "Bottom Surface Outer Wall Speed"
|
||||
msgstr ""
|
||||
msgstr "Velocidade da Parede Externa da Superfície Inferior"
|
||||
|
||||
msgctxt "acceleration_flooring label"
|
||||
msgid "Bottom Surface Skin Acceleration"
|
||||
msgstr ""
|
||||
msgstr "Aceleração do Contorno da Superfície Inferior"
|
||||
|
||||
msgctxt "flooring_extruder_nr label"
|
||||
msgid "Bottom Surface Skin Extruder"
|
||||
msgstr ""
|
||||
msgstr "Extrusor do Contorno da Superfície Inferior"
|
||||
|
||||
msgctxt "flooring_material_flow label"
|
||||
msgid "Bottom Surface Skin Flow"
|
||||
msgstr ""
|
||||
msgstr "Fluxo do Contorno da Superfície Inferior"
|
||||
|
||||
msgctxt "jerk_flooring label"
|
||||
msgid "Bottom Surface Skin Jerk"
|
||||
msgstr ""
|
||||
msgstr "Jerk do Contorno da Superfície Inferior"
|
||||
|
||||
msgctxt "flooring_layer_count label"
|
||||
msgid "Bottom Surface Skin Layers"
|
||||
msgstr ""
|
||||
msgstr "Camadas do Contorno da Superfície Inferior"
|
||||
|
||||
msgctxt "flooring_angles label"
|
||||
msgid "Bottom Surface Skin Line Directions"
|
||||
msgstr ""
|
||||
msgstr "Direções de Filete do Contorno da Superfície Inferior"
|
||||
|
||||
msgctxt "flooring_line_width label"
|
||||
msgid "Bottom Surface Skin Line Width"
|
||||
msgstr ""
|
||||
msgstr "Largura de Filete do Contorno da Superfície Inferior"
|
||||
|
||||
msgctxt "flooring_pattern label"
|
||||
msgid "Bottom Surface Skin Pattern"
|
||||
msgstr ""
|
||||
msgstr "Padrão do Contorno da Superfície Inferior"
|
||||
|
||||
msgctxt "speed_flooring label"
|
||||
msgid "Bottom Surface Skin Speed"
|
||||
msgstr ""
|
||||
msgstr "Velocidade do Contorno da Superfície Inferior"
|
||||
|
||||
msgctxt "bottom_thickness label"
|
||||
msgid "Bottom Thickness"
|
||||
@ -615,7 +615,7 @@ msgstr "Ajustes de Linha de Comando"
|
||||
|
||||
msgctxt "flooring_pattern option concentric"
|
||||
msgid "Concentric"
|
||||
msgstr ""
|
||||
msgstr "Concêntrico"
|
||||
|
||||
msgctxt "infill_pattern option concentric"
|
||||
msgid "Concentric"
|
||||
@ -1127,7 +1127,7 @@ msgstr "Material extra a avançar depois da troca de bico."
|
||||
|
||||
msgctxt "variant_name"
|
||||
msgid "Extruder"
|
||||
msgstr ""
|
||||
msgstr "Extrusor"
|
||||
|
||||
msgctxt "extruder_prime_pos_x label"
|
||||
msgid "Extruder Prime X Position"
|
||||
@ -1227,7 +1227,7 @@ msgstr "Compensação de fluxo nos filetes da base da primeira camada"
|
||||
|
||||
msgctxt "wall_x_material_flow_flooring description"
|
||||
msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one."
|
||||
msgstr ""
|
||||
msgstr "Compensação de fluxo nos filetes de parede da superfície inferior para todos os filetes exceto o mais externo."
|
||||
|
||||
msgctxt "infill_material_flow description"
|
||||
msgid "Flow compensation on infill lines."
|
||||
@ -1239,7 +1239,7 @@ msgstr "Compensação de fluxo em filetes do teto ou base do suporte."
|
||||
|
||||
msgctxt "flooring_material_flow description"
|
||||
msgid "Flow compensation on lines of the areas at the bottom of the print."
|
||||
msgstr ""
|
||||
msgstr "Compensação de fluxo em filetes das áreas da base da impressão."
|
||||
|
||||
msgctxt "roofing_material_flow description"
|
||||
msgid "Flow compensation on lines of the areas at the top of the print."
|
||||
@ -1267,7 +1267,7 @@ msgstr "Compensação de fluxo em filetes de estruturas de suporte."
|
||||
|
||||
msgctxt "wall_0_material_flow_flooring description"
|
||||
msgid "Flow compensation on the bottom surface outermost wall line."
|
||||
msgstr ""
|
||||
msgstr "Compensação de fluxo na parede mais externa da superfície inferior."
|
||||
|
||||
msgctxt "wall_0_material_flow_layer_0 description"
|
||||
msgid "Flow compensation on the outermost wall line of the first layer."
|
||||
@ -1491,7 +1491,7 @@ msgstr "Griffin"
|
||||
|
||||
msgctxt "machine_gcode_flavor option Cheetah"
|
||||
msgid "Griffin+Cheetah"
|
||||
msgstr ""
|
||||
msgstr "Griffin+Cheetah"
|
||||
|
||||
msgctxt "group_outer_walls label"
|
||||
msgid "Group Outer Walls"
|
||||
@ -1899,7 +1899,7 @@ msgstr "De Dentro Pra Fora"
|
||||
|
||||
msgctxt "retraction_combing_avoid_distance label"
|
||||
msgid "Inside Travel Avoid Distance"
|
||||
msgstr ""
|
||||
msgstr "Distância de Desvio do Percurso Interior"
|
||||
|
||||
msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
|
||||
msgid "Interface lines preferred"
|
||||
@ -2091,7 +2091,7 @@ msgstr "Largura de Extrusão"
|
||||
|
||||
msgctxt "flooring_pattern option lines"
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
msgstr "Filetes"
|
||||
|
||||
msgctxt "infill_pattern option lines"
|
||||
msgid "Lines"
|
||||
@ -2423,7 +2423,7 @@ msgstr "Tempo Mínimo de Camada"
|
||||
|
||||
msgctxt "cool_min_layer_time_overhang label"
|
||||
msgid "Minimum Layer Time with Overhang"
|
||||
msgstr ""
|
||||
msgstr "Tempo Mínimo de Camada com Seção Pendente"
|
||||
|
||||
msgctxt "min_odd_wall_line_width label"
|
||||
msgid "Minimum Odd Wall Line Width"
|
||||
@ -2431,7 +2431,7 @@ msgstr "Largura Mínima de Filete de Parede Ímpar"
|
||||
|
||||
msgctxt "cool_min_layer_time_overhang_min_segment_length label"
|
||||
msgid "Minimum Overhang Segment Length"
|
||||
msgstr ""
|
||||
msgstr "Comprimento Mínimo do Segmento de Seção Pendente"
|
||||
|
||||
msgctxt "minimum_polygon_circumference label"
|
||||
msgid "Minimum Polygon Circumference"
|
||||
@ -2519,7 +2519,7 @@ msgstr "Altura de Teto do Molde"
|
||||
|
||||
msgctxt "flooring_monotonic label"
|
||||
msgid "Monotonic Bottom Surface Order"
|
||||
msgstr ""
|
||||
msgstr "Ordem Monotônica de Superfície Inferior"
|
||||
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
@ -2743,7 +2743,7 @@ msgstr "Aceleração da Parede Exterior"
|
||||
|
||||
msgctxt "wall_0_deceleration label"
|
||||
msgid "Outer Wall End Deceleration"
|
||||
msgstr ""
|
||||
msgstr "Deceleração do Final da Parede Externa"
|
||||
|
||||
msgctxt "wall_0_end_speed_ratio label"
|
||||
msgid "Outer Wall End Speed Ratio"
|
||||
@ -2779,7 +2779,7 @@ msgstr "Distância de Divisão de Velocidade da Parede Externa"
|
||||
|
||||
msgctxt "wall_0_acceleration label"
|
||||
msgid "Outer Wall Start Acceleration"
|
||||
msgstr ""
|
||||
msgstr "Aceleração do Início da Parede Externa"
|
||||
|
||||
msgctxt "wall_0_start_speed_ratio label"
|
||||
msgid "Outer Wall Start Speed Ratio"
|
||||
@ -2807,11 +2807,11 @@ msgstr "Ângulo de Parede Pendente"
|
||||
|
||||
msgctxt "wall_overhang_speed_factors label"
|
||||
msgid "Overhanging Wall Speeds"
|
||||
msgstr ""
|
||||
msgstr "Velocidades das Paredes Pendentes"
|
||||
|
||||
msgctxt "wall_overhang_speed_factors description"
|
||||
msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]"
|
||||
msgstr ""
|
||||
msgstr "Paredes pendentes serão impressas em uma porcentagem de sua velocidade normal de impressão. Você pode especificar valores múltiplos, de forma que ainda mais paredes pendentes sejam impressas mais lentamente, por exemplo colocando [75, 50, 25]"
|
||||
|
||||
msgctxt "wipe_pause description"
|
||||
msgid "Pause after the unretract."
|
||||
@ -2847,7 +2847,7 @@ msgstr "Ângulo Preferido de Galho"
|
||||
|
||||
msgctxt "material_pressure_advance_factor label"
|
||||
msgid "Pressure advance factor"
|
||||
msgstr ""
|
||||
msgstr "Factor de avanço de pressão"
|
||||
|
||||
msgctxt "wall_transition_filter_deviation description"
|
||||
msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
|
||||
@ -2927,7 +2927,7 @@ msgstr "Aceleração da Impressão"
|
||||
|
||||
msgctxt "variant_name"
|
||||
msgid "Print Core"
|
||||
msgstr ""
|
||||
msgstr "Núcleo de Impressão"
|
||||
|
||||
msgctxt "jerk_print label"
|
||||
msgid "Print Jerk"
|
||||
@ -2959,7 +2959,7 @@ msgstr "Imprimir uma torre próxima à impressão que serve para purgar o materi
|
||||
|
||||
msgctxt "flooring_monotonic description"
|
||||
msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
msgstr "Imprime os filetes da superfície inferior em uma ordem que faz com que sempre se sobreponham com linhas adjacentes em uma direção única. Isso leva um pouco mais de tempo pra imprimir, mas faz superfícies chatas terem aspecto mais consistente."
|
||||
|
||||
msgctxt "infill_support_enabled description"
|
||||
msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
|
||||
@ -3679,7 +3679,7 @@ msgstr "G-Code Inicial"
|
||||
|
||||
msgctxt "machine_start_gcode_first label"
|
||||
msgid "Start GCode must be first"
|
||||
msgstr ""
|
||||
msgstr "O GCode de Início deve ser o primeiro"
|
||||
|
||||
msgctxt "z_seam_type description"
|
||||
msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
|
||||
@ -4103,7 +4103,7 @@ msgstr "Aceleração com que se imprimem as paredes interiores."
|
||||
|
||||
msgctxt "acceleration_flooring description"
|
||||
msgid "The acceleration with which bottom surface skin layers are printed."
|
||||
msgstr ""
|
||||
msgstr "A aceleração com a qual as camadas do contorno da superfície inferior serão impressas."
|
||||
|
||||
msgctxt "acceleration_infill description"
|
||||
msgid "The acceleration with which infill is printed."
|
||||
@ -4123,11 +4123,11 @@ msgstr "A aceleração com que as camadas de base do raft são impressas."
|
||||
|
||||
msgctxt "acceleration_wall_x_flooring description"
|
||||
msgid "The acceleration with which the bottom surface inner walls are printed."
|
||||
msgstr ""
|
||||
msgstr "A aceleração com que as paredes internas da superfície inferior são impressas."
|
||||
|
||||
msgctxt "acceleration_wall_0_flooring description"
|
||||
msgid "The acceleration with which the bottom surface outermost walls are printed."
|
||||
msgstr ""
|
||||
msgstr "A aceleração com que as paredes mais externas da superfície inferior são impressas."
|
||||
|
||||
msgctxt "acceleration_support_bottom description"
|
||||
msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
|
||||
@ -4347,7 +4347,7 @@ msgstr "A diferença em tamanho da próxima camada comparada à anterior."
|
||||
|
||||
msgctxt "machine_head_with_fans_polygon description"
|
||||
msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam."
|
||||
msgstr ""
|
||||
msgstr "As dimensões da cabeça de impressão usadas para determinar a 'Distância de Modo Seguro' ao imprimir 'Um de Cada Vez'. Esses número se relacionam ao filete central do bico do primeiro extrusor. À esquerda do bico é 'X Mínimo' e deve ser negativo. A parte de trás do bico é 'Y Mínimo' e deve ser negativa. X Máximo (direita) e Y Máximo (frente) são números positivos. Altura do eixo é a dimensão da plataforma de impressão até a barra do eixo X."
|
||||
|
||||
msgctxt "ironing_line_spacing description"
|
||||
msgid "The distance between the lines of ironing."
|
||||
@ -4359,7 +4359,7 @@ msgstr "A distância entre o modelo e sua estrutura de suporta na costura do eix
|
||||
|
||||
msgctxt "retraction_combing_avoid_distance description"
|
||||
msgid "The distance between the nozzle and already printed outer walls when travelling inside a model."
|
||||
msgstr ""
|
||||
msgstr "A distância entre o bico e paredes externas já impressas ao percorrer no interior do modelo."
|
||||
|
||||
msgctxt "travel_avoid_distance description"
|
||||
msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
|
||||
@ -4471,7 +4471,7 @@ msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado
|
||||
|
||||
msgctxt "flooring_extruder_nr description"
|
||||
msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion."
|
||||
msgstr ""
|
||||
msgstr "O carro de extrusor usado para imprimir o contorno mais inferior. Isto é usado em multi-extrusão."
|
||||
|
||||
msgctxt "wall_x_extruder_nr description"
|
||||
msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
|
||||
@ -4723,7 +4723,7 @@ msgstr "A máxima mudança de velocidade instantânea em uma direção com que a
|
||||
|
||||
msgctxt "jerk_flooring description"
|
||||
msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed."
|
||||
msgstr ""
|
||||
msgstr "A máxima mudança instantânea de velocidade com que as camadas de contorno da superfície inferior são impressas."
|
||||
|
||||
msgctxt "jerk_infill description"
|
||||
msgid "The maximum instantaneous velocity change with which infill is printed."
|
||||
@ -4731,11 +4731,11 @@ msgstr "A mudança instantânea máxima de velocidade em uma direção com que o
|
||||
|
||||
msgctxt "jerk_wall_x_flooring description"
|
||||
msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed."
|
||||
msgstr ""
|
||||
msgstr "A máxima mudança instantânea de velocidade com que as paredes internas da superfície inferior são impressas."
|
||||
|
||||
msgctxt "jerk_wall_0_flooring description"
|
||||
msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed."
|
||||
msgstr ""
|
||||
msgstr "A máxima mudança instantânea de velocidade com quem as paredes externas da superfície inferior são impressas."
|
||||
|
||||
msgctxt "jerk_support_bottom description"
|
||||
msgid "The maximum instantaneous velocity change with which the floors of support are printed."
|
||||
@ -4879,7 +4879,7 @@ msgstr "A espessura mínima do casco da torre de purga. Você pode aumentar este
|
||||
|
||||
msgctxt "cool_min_layer_time_overhang description"
|
||||
msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
|
||||
msgstr ""
|
||||
msgstr "O tempo mínimo gasto em uma camada que contenha extrusões pendentes. Isto força a impressora a desacelerar para pelo menos gastar o tempo ajustado aqui em uma camada. E por sua vez isso permite que o material impresso esfrie apropriadamente antes de imprimir a próxima camada. Camadas ainda podem levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada dessa forma."
|
||||
|
||||
msgctxt "cool_min_layer_time description"
|
||||
msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
|
||||
@ -4915,7 +4915,7 @@ msgstr "O número de camadas inferiores. Quando calculado da espessura inferior,
|
||||
|
||||
msgctxt "flooring_layer_count description"
|
||||
msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces."
|
||||
msgstr ""
|
||||
msgstr "O número de camadas do contorno mais inferior. Geralmente somente uma camada de contorno mais inferior é suficiente para gerar superfícies inferiores de maior qualidade."
|
||||
|
||||
msgctxt "raft_base_wall_count description"
|
||||
msgid "The number of contours to print around the linear pattern in the base layer of the raft."
|
||||
@ -4955,7 +4955,7 @@ msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram
|
||||
|
||||
msgctxt "build_volume_fan_nr description"
|
||||
msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan"
|
||||
msgstr "O número da ventoinha que refrigera o volume de construção. Se isto for colocado em 0, significa que não há ventoinha do volume de construção."
|
||||
msgstr "O número da ventoinhas que refrigeram o volume de construção. Se isto for colocado em 0, significa que não há ventoinha do volume de construção."
|
||||
|
||||
msgctxt "raft_surface_layers description"
|
||||
msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
|
||||
@ -4999,7 +4999,7 @@ msgstr "Diâmetro exterior do bico (a ponta do hotend)."
|
||||
|
||||
msgctxt "flooring_pattern description"
|
||||
msgid "The pattern of the bottom most layers."
|
||||
msgstr ""
|
||||
msgstr "O padrão das camadas mais inferiores."
|
||||
|
||||
msgctxt "infill_pattern description"
|
||||
msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
|
||||
@ -5083,7 +5083,7 @@ msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir
|
||||
|
||||
msgctxt "speed_flooring description"
|
||||
msgid "The speed at which bottom surface skin layers are printed."
|
||||
msgstr ""
|
||||
msgstr "A velocidade com que as camadas do contorno da superfície inferior são impressas."
|
||||
|
||||
msgctxt "bridge_skin_speed description"
|
||||
msgid "The speed at which bridge skin regions are printed."
|
||||
@ -5103,11 +5103,11 @@ msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impre
|
||||
|
||||
msgctxt "speed_wall_x_flooring description"
|
||||
msgid "The speed at which the bottom surface inner walls are printed."
|
||||
msgstr ""
|
||||
msgstr "A velocidade com que as paredes internas da superfície inferior são impressas."
|
||||
|
||||
msgctxt "speed_wall_0_flooring description"
|
||||
msgid "The speed at which the bottom surface outermost wall is printed."
|
||||
msgstr ""
|
||||
msgstr "A velocidade com que a parede mais externa da superfície inferior é impressa."
|
||||
|
||||
msgctxt "bridge_wall_speed description"
|
||||
msgid "The speed at which the bridge walls are printed."
|
||||
@ -5431,7 +5431,7 @@ msgstr "Este ajuste controle quantos cantos internos no contorno do topo do raft
|
||||
|
||||
msgctxt "machine_start_gcode_first description"
|
||||
msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code."
|
||||
msgstr ""
|
||||
msgstr "Este ajuste controle se o gcode de início é forçado para sempre ser o primeiro g-code. Sem esta opção outro g-code, como um T0, pode ser inserido antes do g-code de início."
|
||||
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
@ -5667,7 +5667,7 @@ msgstr "Tentar prevenir costuras nas paredes que tenham seção pendente com ân
|
||||
|
||||
msgctxt "material_pressure_advance_factor description"
|
||||
msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion"
|
||||
msgstr ""
|
||||
msgstr "Fator de sintonização de avanço de pressão, que tem a função de sincronizar a extrusão com o movimento"
|
||||
|
||||
msgctxt "machine_gcode_flavor option UltiGCode"
|
||||
msgid "Ultimaker 2"
|
||||
@ -5883,7 +5883,7 @@ msgstr "Ao transicionar entre diferentes números de paredes à medida que a pe
|
||||
|
||||
msgctxt "cool_min_layer_time_overhang_min_segment_length description"
|
||||
msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value."
|
||||
msgstr ""
|
||||
msgstr "Ao tentar aplicar o tempo mínimo de camada específico para camadas pendentes, o ajuste valerá somente se no mínimo um movimento de extrusão pendente consecutivo demorar mais que esse valor."
|
||||
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
@ -5983,7 +5983,7 @@ msgstr "Largura de um filete usado no teto ou base do suporte."
|
||||
|
||||
msgctxt "flooring_line_width description"
|
||||
msgid "Width of a single line of the areas at the bottom of the print."
|
||||
msgstr ""
|
||||
msgstr "Largura de um filete singular das áreas na base da impressão."
|
||||
|
||||
msgctxt "roofing_line_width description"
|
||||
msgid "Width of a single line of the areas at the top of the print."
|
||||
@ -6187,7 +6187,7 @@ msgstr "Z substitui X/Y"
|
||||
|
||||
msgctxt "flooring_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr ""
|
||||
msgstr "Ziguezague"
|
||||
|
||||
msgctxt "infill_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
|
BIN
resources/images/UltimakerS6backplate.png
Normal file
BIN
resources/images/UltimakerS6backplate.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_method
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,32 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
|
@ -1,38 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,32 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1XA
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
|
@ -1,38 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1XA
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,32 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
|
@ -1,38 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,41 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodx
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 47
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,42 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 45
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
material_bed_temperature = 45
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,42 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1A
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 45
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
material_bed_temperature = 45
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,32 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
|
@ -1,38 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,42 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 45
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
material_bed_temperature = 45
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,42 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1C
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 45
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
material_bed_temperature = 45
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,32 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1XA
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
|
@ -1,38 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = 1XA
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,32 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
|
@ -1,38 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_absr_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
cool_min_temperature = 245.0
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_support = 100
|
||||
speed_support_interface = 75
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 250
|
||||
speed_wall_0 = 40
|
||||
support_pattern = zigzag
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,42 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 45
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
material_bed_temperature = 45
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -1,34 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeed
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bridge_wall_speed = 300
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_pattern = zigzag
|
||||
jerk_print = 35
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
|
@ -1,42 +0,0 @@
|
||||
[general]
|
||||
definition = ultimaker_methodxl
|
||||
name = High Speed Solid
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = highspeedsolid
|
||||
is_experimental = True
|
||||
material = ultimaker_tough_pla_175
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = LABS
|
||||
|
||||
[values]
|
||||
acceleration_print = 3500
|
||||
bottom_thickness = =top_bottom_thickness
|
||||
bridge_wall_speed = 300
|
||||
build_volume_temperature = 45
|
||||
cool_fan_enabled = True
|
||||
cool_fan_speed = 100
|
||||
cool_min_layer_time = 3
|
||||
infill_angles = [45,135]
|
||||
infill_material_flow = 97
|
||||
infill_pattern = zigzag
|
||||
infill_sparse_density = 99
|
||||
jerk_print = 35
|
||||
material_bed_temperature = 45
|
||||
speed_infill = 240.0
|
||||
speed_layer_0 = 55
|
||||
speed_print = 300
|
||||
speed_travel = 500
|
||||
speed_travel_layer_0 = 350.0
|
||||
speed_wall_0 = 45
|
||||
support_interface_line_width = 0.42
|
||||
support_line_width = 0.47
|
||||
support_material_flow = 100
|
||||
support_pattern = zigzag
|
||||
support_roof_line_width = 0.42
|
||||
top_bottom_thickness = =layer_height * 2
|
||||
top_thickness = =top_bottom_thickness
|
||||
|
@ -0,0 +1,18 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Accurate
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = engineering
|
||||
material = generic_nylon-cf-slide
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = CC+ 0.6
|
||||
|
||||
[values]
|
||||
infill_sparse_density = 20
|
||||
top_bottom_thickness = =wall_thickness
|
||||
wall_thickness = =line_width * 3
|
||||
|
@ -5,11 +5,11 @@ version = 4
|
||||
|
||||
[metadata]
|
||||
intent_category = engineering
|
||||
material = generic_nylon
|
||||
material = generic_petcf
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = intent
|
||||
variant = AA+ 0.4
|
||||
variant = CC+ 0.6
|
||||
|
||||
[values]
|
||||
infill_sparse_density = 20
|
@ -360,17 +360,6 @@ UM.PreferencesPage
|
||||
}
|
||||
}
|
||||
|
||||
UM.Label
|
||||
{
|
||||
id: languageCaption
|
||||
|
||||
//: Language change warning
|
||||
text: catalog.i18nc("@label", "*You will need to restart the application for these changes to have effect.")
|
||||
wrapMode: Text.WordWrap
|
||||
font.italic: true
|
||||
|
||||
}
|
||||
|
||||
Item
|
||||
{
|
||||
//: Spacer
|
||||
@ -705,7 +694,7 @@ UM.PreferencesPage
|
||||
UM.CheckBox
|
||||
{
|
||||
id: singleInstanceCheckbox
|
||||
text: catalog.i18nc("@option:check","Use a single instance of Cura")
|
||||
text: catalog.i18nc("@option:check","Use a single instance of Cura *")
|
||||
|
||||
checked: boolCheck(UM.Preferences.getValue("cura/single_instance"))
|
||||
onCheckedChanged: UM.Preferences.setValue("cura/single_instance", checked)
|
||||
@ -1101,8 +1090,6 @@ UM.PreferencesPage
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Multi-buildplate functionality is disabled because it's broken. See CURA-4975 for the ticket to remove it.
|
||||
Item
|
||||
{
|
||||
//: Spacer
|
||||
@ -1110,6 +1097,18 @@ UM.PreferencesPage
|
||||
width: UM.Theme.getSize("default_margin").height
|
||||
}
|
||||
|
||||
UM.Label
|
||||
{
|
||||
id: languageCaption
|
||||
|
||||
//: Language change warning
|
||||
text: catalog.i18nc("@label", "*You will need to restart the application for these changes to have effect.")
|
||||
wrapMode: Text.WordWrap
|
||||
font.italic: true
|
||||
}
|
||||
|
||||
/* Multi-buildplate functionality is disabled because it's broken. See CURA-4975 for the ticket to remove it.
|
||||
|
||||
Label
|
||||
{
|
||||
font.bold: true
|
||||
|
@ -46,7 +46,7 @@ RecommendedSettingSection
|
||||
contents: [
|
||||
RecommendedSettingItem
|
||||
{
|
||||
settingName: catalog.i18nc("@action:label", "Support Type")
|
||||
settingName: catalog.i18nc("@action:label", "Support Structure")
|
||||
tooltipText: catalog.i18nc("@label", "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible.")
|
||||
isCompressed: enableSupportRow.isCompressed
|
||||
|
||||
|
@ -25,8 +25,10 @@ Item
|
||||
property var onDoubleClicked: function(row) {} //Something to execute when double clicked. Accepts one argument: The index of the row that was clicked on.
|
||||
property bool allowSelection: true //Whether to allow the user to select items.
|
||||
property string sectionRole: ""
|
||||
property int minimumColumnWidth: 50 //The minimum width of a column while resizing.
|
||||
|
||||
property alias flickableDirection: tableView.flickableDirection
|
||||
|
||||
Row
|
||||
{
|
||||
id: headerBar
|
||||
@ -50,49 +52,97 @@ Item
|
||||
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
||||
anchors.right: parent.right
|
||||
anchors.rightMargin: UM.Theme.getSize("narrow_margin").width
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
wrapMode: Text.NoWrap
|
||||
text: modelData
|
||||
font: UM.Theme.getFont("medium_bold")
|
||||
elide: Text.ElideRight
|
||||
}
|
||||
Item
|
||||
|
||||
MouseArea
|
||||
{
|
||||
//Resize handle.
|
||||
// Resize handle
|
||||
anchors
|
||||
{
|
||||
right: parent.right
|
||||
top: parent.top
|
||||
bottom: parent.bottom
|
||||
rightMargin: -width / 2
|
||||
}
|
||||
width: UM.Theme.getSize("default_lining").width
|
||||
width: UM.Theme.getSize("wide_lining").width * 2
|
||||
enabled: index < headerRepeater.count - 1
|
||||
acceptedButtons: Qt.LeftButton
|
||||
cursorShape: enabled ? Qt.SizeHorCursor : Qt.ArrowCursor
|
||||
|
||||
MouseArea
|
||||
property var dragLastPos
|
||||
|
||||
onPressed: function(mouse) { dragLastPos = mapToItem(parent, mouse.x, mouse.y) }
|
||||
|
||||
onPositionChanged: function(mouse)
|
||||
{
|
||||
anchors.fill: parent
|
||||
let global_pos = mapToItem(parent, mouse.x, mouse.y)
|
||||
let delta = global_pos.x - dragLastPos.x
|
||||
dragLastPos = global_pos
|
||||
|
||||
cursorShape: Qt.SizeHorCursor
|
||||
drag
|
||||
let new_widths = []
|
||||
for(let i = 0; i < headerRepeater.count; ++i)
|
||||
{
|
||||
target: parent
|
||||
axis: Drag.XAxis
|
||||
new_widths[i] = headerRepeater.itemAt(i).width;
|
||||
}
|
||||
onMouseXChanged:
|
||||
|
||||
// Reduce the delta if needed, depending on how much available space we have on the sides
|
||||
if(delta > 0)
|
||||
{
|
||||
if(drag.active)
|
||||
let available_extra_width = 0
|
||||
for(let i = index + 1; i < headerRepeater.count; ++i)
|
||||
{
|
||||
let new_width = parent.parent.width + mouseX;
|
||||
let sum_widths = mouseX;
|
||||
for(let i = 0; i < headerBar.children.length; ++i)
|
||||
{
|
||||
sum_widths += headerBar.children[i].width;
|
||||
}
|
||||
if(sum_widths > tableBase.width)
|
||||
{
|
||||
new_width -= sum_widths - tableBase.width; //Limit the total width to not exceed the view.
|
||||
}
|
||||
let width_fraction = new_width / tableBase.width; //Scale with the same fraction along with the total width, if the table is resized.
|
||||
parent.parent.width = Qt.binding(function() { return Math.max(10, Math.round(tableBase.width * width_fraction)) });
|
||||
available_extra_width += headerRepeater.itemAt(i).width - minimumColumnWidth
|
||||
}
|
||||
|
||||
delta = Math.min(delta, available_extra_width)
|
||||
}
|
||||
else if(delta < 0)
|
||||
{
|
||||
let available_substracted_width = 0
|
||||
for(let i = index ; i >= 0 ; --i)
|
||||
{
|
||||
available_substracted_width -= headerRepeater.itemAt(i).width - minimumColumnWidth
|
||||
}
|
||||
|
||||
delta = Math.max(delta, available_substracted_width)
|
||||
}
|
||||
|
||||
if(delta > 0)
|
||||
{
|
||||
// Enlarge the current element
|
||||
new_widths[index] += delta
|
||||
|
||||
// Now reduce elements on the right
|
||||
for (let i = index + 1; delta > 0 && i < headerRepeater.count; ++i)
|
||||
{
|
||||
let substract_width = Math.min(delta, headerRepeater.itemAt(i).width - minimumColumnWidth)
|
||||
new_widths[i] -= substract_width
|
||||
delta -= substract_width
|
||||
}
|
||||
}
|
||||
else if(delta < 0)
|
||||
{
|
||||
// Enlarge the element on the right
|
||||
new_widths[index + 1] -= delta
|
||||
|
||||
// Now reduce elements on the left
|
||||
for (let i = index; delta < 0 && i >= 0; --i)
|
||||
{
|
||||
let substract_width = Math.max(delta, -(headerRepeater.itemAt(i).width - minimumColumnWidth))
|
||||
new_widths[i] += substract_width
|
||||
delta -= substract_width
|
||||
}
|
||||
}
|
||||
|
||||
// Apply the calculated widths
|
||||
for(let i = 0; i < headerRepeater.count; ++i)
|
||||
{
|
||||
headerRepeater.itemAt(i).width = new_widths[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -101,6 +151,7 @@ Item
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle
|
||||
{
|
||||
color: UM.Theme.getColor("main_background")
|
||||
@ -201,6 +252,24 @@ Item
|
||||
}
|
||||
}
|
||||
|
||||
onWidthChanged:
|
||||
{
|
||||
// Get the previous width but summing the width of actual columns
|
||||
let previous_width = 0
|
||||
for(let i = 0; i < headerRepeater.count; ++i)
|
||||
{
|
||||
previous_width += headerRepeater.itemAt(i).width;
|
||||
}
|
||||
|
||||
// Now resize the columns while keeping their previous ratios
|
||||
for(let i = 0; i < headerRepeater.count; ++i)
|
||||
{
|
||||
let item = headerRepeater.itemAt(i)
|
||||
let item_width_ratio = item.width / previous_width;
|
||||
item.width = item_width_ratio * tableBase.width
|
||||
}
|
||||
}
|
||||
|
||||
Connections
|
||||
{
|
||||
target: model
|
||||
|
@ -43,6 +43,8 @@ Item
|
||||
textArea.readOnly: true
|
||||
textArea.font: UM.Theme.getFont("default")
|
||||
textArea.onLinkActivated: Qt.openUrlExternally(link)
|
||||
textArea.rightPadding: 15
|
||||
textArea.leftPadding: 15
|
||||
}
|
||||
|
||||
Cura.PrimaryButton
|
||||
|
@ -114,7 +114,7 @@ Item
|
||||
textArea.font: UM.Theme.getFont("default")
|
||||
textArea.onLinkActivated: Qt.openUrlExternally(link)
|
||||
textArea.leftPadding: 0
|
||||
textArea.rightPadding: 0
|
||||
textArea.rightPadding: 15
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -12,7 +12,8 @@ import Cura 1.7 as Cura
|
||||
// All of the setting updating logic is handled by this component.
|
||||
// This uses the "options" value of a setting to populate the drop down. This will only work for settings with "options"
|
||||
// If the setting is limited to a single extruder or is settable with different values per extruder use "updateAllExtruders: true"
|
||||
Cura.ComboBox {
|
||||
Cura.ComboBox
|
||||
{
|
||||
textRole: "text"
|
||||
property alias settingName: propertyProvider.key
|
||||
property alias propertyRemoveUnusedValue: propertyProvider.removeUnusedValue
|
||||
@ -23,6 +24,8 @@ Cura.ComboBox {
|
||||
// This is only used if updateAllExtruders == true
|
||||
property int defaultExtruderIndex: Cura.ExtruderManager.activeExtruderIndex
|
||||
|
||||
UM.I18nCatalog { id: settings_catalog; name: "fdmprinter.def.json" }
|
||||
|
||||
model: ListModel
|
||||
{
|
||||
id: comboboxModel
|
||||
@ -42,6 +45,7 @@ Cura.ComboBox {
|
||||
{
|
||||
var key = propertyProvider.properties["options"].keys()[i]
|
||||
var value = propertyProvider.properties["options"][key]
|
||||
value = settings_catalog.i18nc(settingName + " option " + key, value)
|
||||
comboboxModel.append({ text: value, code: key})
|
||||
|
||||
if (propertyProvider.properties.value === key)
|
||||
|
@ -15,7 +15,6 @@ weight = -2
|
||||
cool_min_layer_time = 4
|
||||
cool_min_layer_time_fan_speed_max = 9
|
||||
cool_min_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
retraction_prime_speed = 15
|
||||
support_structure = tree
|
||||
|
||||
|
@ -13,8 +13,10 @@ weight = -2
|
||||
|
||||
[values]
|
||||
infill_overlap = 20
|
||||
infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'gyroid'
|
||||
speed_print = 100
|
||||
speed_wall_0 = =speed_print
|
||||
infill_pattern = lines
|
||||
speed_print = 40
|
||||
speed_wall = =speed_print
|
||||
speed_wall_0 = =speed_wall
|
||||
support_interface_enable = True
|
||||
wall_thickness = =wall_line_width_0 + 2*wall_line_width_x
|
||||
|
||||
|
@ -0,0 +1,23 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_abs
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = AA+ 0.6
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
cool_min_layer_time = 4
|
||||
cool_min_layer_time_fan_speed_max = 9
|
||||
cool_min_temperature = =material_print_temperature - 10
|
||||
retraction_prime_speed = 15
|
||||
support_interface_enable = False
|
||||
support_structure = tree
|
||||
|
@ -0,0 +1,25 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Extra Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_abs
|
||||
quality_type = verydraft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = AA+ 0.6
|
||||
weight = -3
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
cool_min_layer_time = 4
|
||||
cool_min_layer_time_fan_speed_max = 9
|
||||
cool_min_temperature = =material_print_temperature - 10
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
retraction_prime_speed = 15
|
||||
support_interface_enable = False
|
||||
support_structure = tree
|
||||
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
||||
|
@ -0,0 +1,20 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_petg
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = AA+ 0.6
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
cool_min_layer_time = 4
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
support_interface_enable = False
|
||||
|
@ -0,0 +1,21 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Extra Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_petg
|
||||
quality_type = verydraft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = AA+ 0.6
|
||||
weight = -3
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
cool_min_layer_time = 4
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
support_interface_enable = False
|
||||
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
||||
|
@ -0,0 +1,20 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = AA+ 0.6
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
retraction_prime_speed = =retraction_speed
|
||||
support_interface_enable = False
|
||||
support_structure = tree
|
||||
|
@ -0,0 +1,22 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Extra Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_pla
|
||||
quality_type = verydraft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = AA+ 0.6
|
||||
weight = -3
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
material_print_temperature = =default_material_print_temperature + 20
|
||||
retraction_prime_speed = =retraction_speed
|
||||
support_interface_enable = False
|
||||
support_structure = tree
|
||||
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
||||
|
@ -0,0 +1,20 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tough_pla
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = AA+ 0.6
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
retraction_prime_speed = =retraction_speed
|
||||
support_interface_enable = False
|
||||
support_structure = tree
|
||||
|
@ -0,0 +1,22 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Extra Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_tough_pla
|
||||
quality_type = verydraft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = AA+ 0.6
|
||||
weight = -3
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
material_print_temperature = =default_material_print_temperature + 20
|
||||
retraction_prime_speed = =retraction_speed
|
||||
support_interface_enable = False
|
||||
support_structure = tree
|
||||
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
||||
|
@ -13,17 +13,23 @@ weight = -1
|
||||
|
||||
[values]
|
||||
acceleration_prime_tower = 1500
|
||||
acceleration_support = 1500
|
||||
brim_replaces_support = False
|
||||
build_volume_temperature = =70 if extruders_enabled_count > 1 else 35
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
||||
initial_layer_line_width_factor = 150
|
||||
jerk_prime_tower = 4000
|
||||
jerk_support = 4000
|
||||
minimum_support_area = 4
|
||||
retraction_amount = 6.5
|
||||
retraction_count_max = 5
|
||||
skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width))
|
||||
speed_prime_tower = 25
|
||||
speed_prime_tower = 50
|
||||
speed_support = 50
|
||||
support_angle = 45
|
||||
speed_support_bottom = =2*speed_support_interface/5
|
||||
speed_support_interface = 50
|
||||
support_bottom_density = 70
|
||||
support_infill_sparse_thickness = =2 * layer_height
|
||||
support_interface_enable = True
|
||||
support_z_distance = 0
|
||||
|
@ -13,18 +13,24 @@ weight = 0
|
||||
|
||||
[values]
|
||||
acceleration_prime_tower = 1500
|
||||
acceleration_support = 1500
|
||||
brim_replaces_support = False
|
||||
build_volume_temperature = =70 if extruders_enabled_count > 1 else 35
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
||||
initial_layer_line_width_factor = 150
|
||||
jerk_prime_tower = 4000
|
||||
jerk_support = 4000
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
minimum_support_area = 4
|
||||
retraction_amount = 6.5
|
||||
retraction_count_max = 5
|
||||
skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width))
|
||||
speed_prime_tower = 25
|
||||
speed_prime_tower = 50
|
||||
speed_support = 50
|
||||
support_angle = 45
|
||||
speed_support_bottom = =2*speed_support_interface/5
|
||||
speed_support_interface = 50
|
||||
support_bottom_density = 70
|
||||
support_infill_sparse_thickness = =2 * layer_height
|
||||
support_interface_enable = True
|
||||
support_z_distance = 0
|
||||
|
@ -13,18 +13,24 @@ weight = -2
|
||||
|
||||
[values]
|
||||
acceleration_prime_tower = 1500
|
||||
acceleration_support = 1500
|
||||
brim_replaces_support = False
|
||||
build_volume_temperature = =70 if extruders_enabled_count > 1 else 35
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
||||
initial_layer_line_width_factor = 150
|
||||
jerk_prime_tower = 4000
|
||||
jerk_support = 4000
|
||||
material_print_temperature = =default_material_print_temperature + 5
|
||||
minimum_support_area = 4
|
||||
retraction_amount = 6.5
|
||||
retraction_count_max = 5
|
||||
skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width))
|
||||
speed_prime_tower = 25
|
||||
speed_prime_tower = 50
|
||||
speed_support = 50
|
||||
support_angle = 45
|
||||
speed_support_bottom = =2*speed_support_interface/5
|
||||
speed_support_interface = 50
|
||||
support_bottom_density = 70
|
||||
support_interface_enable = True
|
||||
support_z_distance = 0
|
||||
|
||||
|
@ -13,18 +13,24 @@ weight = -3
|
||||
|
||||
[values]
|
||||
acceleration_prime_tower = 1500
|
||||
acceleration_support = 1500
|
||||
brim_replaces_support = False
|
||||
build_volume_temperature = =70 if extruders_enabled_count > 1 else 35
|
||||
cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr))
|
||||
default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60
|
||||
initial_layer_line_width_factor = 150
|
||||
jerk_prime_tower = 4000
|
||||
jerk_support = 4000
|
||||
material_print_temperature = =default_material_print_temperature - 5
|
||||
minimum_support_area = 4
|
||||
retraction_amount = 6.5
|
||||
retraction_count_max = 5
|
||||
skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width))
|
||||
speed_prime_tower = 25
|
||||
speed_prime_tower = 50
|
||||
speed_support = 50
|
||||
support_angle = 45
|
||||
speed_support_bottom = =2*speed_support_interface/5
|
||||
speed_support_interface = 50
|
||||
support_bottom_density = 70
|
||||
support_infill_sparse_thickness = 0.3
|
||||
support_interface_enable = True
|
||||
support_z_distance = 0
|
||||
|
@ -13,4 +13,5 @@ weight = -2
|
||||
|
||||
[values]
|
||||
cool_min_layer_time_fan_speed_max = 11
|
||||
retraction_prime_speed = 15
|
||||
|
||||
|
@ -14,6 +14,8 @@ weight = -2
|
||||
[values]
|
||||
cool_min_layer_time = 6
|
||||
cool_min_layer_time_fan_speed_max = 12
|
||||
retraction_amount = 8
|
||||
inset_direction = inside_out
|
||||
material_flow = 95
|
||||
retraction_prime_speed = 15
|
||||
speed_wall_x = =speed_wall_0
|
||||
|
||||
|
@ -0,0 +1,17 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_nylon-cf-slide
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = CC+ 0.6
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
cool_min_layer_time_fan_speed_max = 11
|
||||
retraction_prime_speed = 15
|
||||
|
@ -0,0 +1,17 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Extra Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_nylon-cf-slide
|
||||
quality_type = verydraft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = CC+ 0.6
|
||||
weight = -3
|
||||
|
||||
[values]
|
||||
cool_min_layer_time_fan_speed_max = 11
|
||||
retraction_prime_speed = 15
|
||||
|
@ -0,0 +1,18 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_petcf
|
||||
quality_type = draft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = CC+ 0.6
|
||||
weight = -2
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
support_interface_enable = False
|
||||
|
@ -0,0 +1,20 @@
|
||||
[general]
|
||||
definition = ultimaker_s8
|
||||
name = Extra Fast
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
material = generic_petcf
|
||||
quality_type = verydraft
|
||||
setting_version = 25
|
||||
type = quality
|
||||
variant = CC+ 0.6
|
||||
weight = -3
|
||||
|
||||
[values]
|
||||
bridge_skin_material_flow = 200
|
||||
bridge_wall_material_flow = 200
|
||||
material_print_temperature = =default_material_print_temperature + 10
|
||||
support_interface_enable = False
|
||||
wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
|
||||
|
@ -5,12 +5,13 @@
|
||||
- Cheetah Gcode Flavor: Introduced a new Marlin-like Gcode flavor called Cheetah.
|
||||
- SpaceMouse support: Navigate the view seamlessly with a 3D mouse, thanks to a collaboration with 3Dconnexion.
|
||||
- Cloud Printing for Sketch Sprint: Enabled printing over cloud with Digital Factory for Sketch Sprint users.
|
||||
- Interlocking Settings: Moved Interlocking settings out of experimental into expert
|
||||
- Interlocking Settings: Moved Interlocking settings from "Experimental" to "Dual Extrusion" category and placed under "Expert" setting visibility preset.
|
||||
- Build System Upgrade: Upgraded the build system from Conan 1 to Conan 2. Updated documentation is available.
|
||||
- Preview Looping: When the last layer is played in the preview, the first layer will now play again instead of stopping.
|
||||
- Updated About Page: The About Page now shows the used sources, their licenses, and their versions in a clearer way
|
||||
- Flip Y-axis Translate Tool Handle: Added an option to flip the Y-axis translate tool handle in preferences contributed by @GregValiant.
|
||||
- Rotation by Input & Snap Angle Input: Introduced rotation by input & snap angle input contributed by @HellAholic and @GregValiant.
|
||||
- Improved the speed when interacting with the Settings Visiblity window contributed by @HellAholic
|
||||
- Purge Lines And Unload Filament Post Processing Script: Added a Purge Lines and Unload Filament Post Processing Script contributed by @GregValiant and @HellAholic
|
||||
- Thingiverse "Open in Cura" Button Linux Support: Enabled the "Open in Cura" button from Thingiverse to open files in Linux contributed by @hadess.
|
||||
- Multitool Printer Configuration Options: Introduced 3 new configuration options in machine settings for multitool printers contributed by @TheSin-.
|
||||
@ -21,11 +22,13 @@
|
||||
* New settings:
|
||||
- Overhanging Wall Speeds, now gives you the ability to tune multiple values. Don’t forget to adjust the Overhanging Wall Angle to start using the setting.
|
||||
- Minimum Layer Time with Overhang and Minimum Overhang Segment Length: Fine-tune the minimum layer time for overhangs.
|
||||
Try it for yourself <a href="https://www.thingiverse.com/thing:6975650?utm_source=changelog&utm_medium=cura&utm_campaign=510">with this Overhanging Wall Angle Test</a>.
|
||||
- Inside Travel Avoid Distance: Finetune combing movements.
|
||||
- Pressure Advance Factor Setting: New setting for machine definitions.
|
||||
- You can now tune the Bottom Surface Skin, like you can tune the Top Surface Skin! You can now tune Extruder, Layers, Line Width, Pattern, Line Directions, Outer Wall Flow, Inner Wall(s) Flow, Flow, Outer Wall Speed, Inner Wall Speed, Skin Speed, Inner Wall Acceleration, Skin Acceleration, Outer Wall Jerk, Inner Wall Jerk, Skin Jerk, and Monotonic Bottom Surface Order
|
||||
- Enable/Disable USB Printing: A hidden preference setting to indicate that you are using the printer over USB functionality. This setting lays the groundwork for automatically disabling USB printing in the next release when it’s not being used.
|
||||
|
||||
|
||||
* Bug fixes:
|
||||
- Resolved a crash that occurred when switching materials on Sovol printers.
|
||||
- Random Seam no longer favors one side and not is truly random again
|
||||
@ -37,14 +40,27 @@
|
||||
- The number of decimal places displayed for layer height in the top bar has been reduced.
|
||||
- Fixed a bug that caused incorrect retracting and hopping on printers with more than 2 extruders.
|
||||
- Improved how fast the settings are loaded in the Settings Visibility window when scrolling
|
||||
- Improved how disallowed areas and other models are taken into account when arranging models on the buildplate
|
||||
- Improved how disallowed areas and other models are taken into account when arranging models on the buildplate, including other models
|
||||
- Preview playback now only shows visible parts. Infill lines, shell, and helpers are always hidden if disabled in preview's color scheme
|
||||
|
||||
|
||||
* Bugs resolved since the Beta release
|
||||
- Fixed a bug where the inner wall was bridging incorrectly
|
||||
- Fixed a bug where support meshes were not printing if they had nothing to support
|
||||
- Fixed a bug where project names would get mixed up when switching between projects
|
||||
- Improved the UltiMaker S8 profiles to boost reliability and quality
|
||||
- Updated Nylon CF Slide settings to reduce under extrusion
|
||||
- Reduced the chance of a filament jam on Method series printers with dual extrusion prints with small layertimes
|
||||
- The Bottom Surface Skin settings introduced in this release are now only enabled if 'Bottom Surface Skin layers' is more than zero
|
||||
- Fixed the translations for the drop-downs in the Print Setting recommended view
|
||||
- Columns in the Profile Description Screen can now be resized so long setting names can be read
|
||||
- Two non-critical security fixes were implemented to align with security best practices in OAuth2 and the printer-linter
|
||||
- Resolved top reported crashes coming in via the analyzing tool Sentry
|
||||
|
||||
* Printer definitions, profiles, and materials:
|
||||
- Introduced Visual Intents for the Sketch Sprint
|
||||
- Introduced new Extra Fast and Draft profiles for the Sketch Sprint
|
||||
- Introduced profiles for Sketch printers for Metallic PLA with improved surface quality (matte vs shiny)
|
||||
- Introduce High Speed and High Speed Solid intents for Method, Method X, and Method XL
|
||||
- Introduced PC ABS and PC ABS FR materials for Method X and Method XL
|
||||
- Introduced Nylon Slide for UltiMaker S Series Printers
|
||||
- Updated the Breakaway Build Volume Temperature for UltiMaker Factor 4
|
||||
|
16
resources/themes/daily_test_colors.json
Normal file
16
resources/themes/daily_test_colors.json
Normal file
@ -0,0 +1,16 @@
|
||||
[
|
||||
[ 62, 33, 55, 255],
|
||||
[126, 196, 193, 255],
|
||||
[126, 196, 193, 255],
|
||||
[215, 155, 125, 255],
|
||||
[228, 148, 58, 255],
|
||||
[192, 199, 65, 255],
|
||||
[157, 48, 59, 255],
|
||||
[140, 143, 174, 255],
|
||||
[ 23, 67, 75, 255],
|
||||
[ 23, 67, 75, 255],
|
||||
[154, 99, 72, 255],
|
||||
[112, 55, 127, 255],
|
||||
[100, 125, 52, 255],
|
||||
[210, 100, 113, 255]
|
||||
]
|
17
resources/variants/ultimaker_s6_aa_plus04.inst.cfg
Normal file
17
resources/variants/ultimaker_s6_aa_plus04.inst.cfg
Normal file
@ -0,0 +1,17 @@
|
||||
[general]
|
||||
definition = ultimaker_s6
|
||||
name = AA+ 0.4
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
hardware_type = nozzle
|
||||
setting_version = 25
|
||||
type = variant
|
||||
|
||||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_id = AA+ 0.4
|
||||
machine_nozzle_size = 0.4
|
||||
machine_nozzle_tip_outer_diameter = 1.2
|
||||
retraction_prime_speed = =retraction_speed
|
||||
|
17
resources/variants/ultimaker_s6_aa_plus06.inst.cfg
Normal file
17
resources/variants/ultimaker_s6_aa_plus06.inst.cfg
Normal file
@ -0,0 +1,17 @@
|
||||
[general]
|
||||
definition = ultimaker_s6
|
||||
name = AA+ 0.6
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
hardware_type = nozzle
|
||||
setting_version = 25
|
||||
type = variant
|
||||
|
||||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_id = AA+ 0.6
|
||||
machine_nozzle_size = 0.6
|
||||
machine_nozzle_tip_outer_diameter = 1.2
|
||||
retraction_prime_speed = =retraction_speed
|
||||
|
19
resources/variants/ultimaker_s6_bb04.inst.cfg
Normal file
19
resources/variants/ultimaker_s6_bb04.inst.cfg
Normal file
@ -0,0 +1,19 @@
|
||||
[general]
|
||||
definition = ultimaker_s6
|
||||
name = BB 0.4
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
hardware_type = nozzle
|
||||
setting_version = 25
|
||||
type = variant
|
||||
|
||||
[values]
|
||||
machine_nozzle_heat_up_speed = 1.5
|
||||
machine_nozzle_id = BB 0.4
|
||||
machine_nozzle_tip_outer_diameter = 1.0
|
||||
retraction_amount = 4.5
|
||||
support_bottom_height = =layer_height * 2
|
||||
support_interface_enable = True
|
||||
switch_extruder_retraction_amount = 12
|
||||
|
17
resources/variants/ultimaker_s6_cc_plus04.inst.cfg
Normal file
17
resources/variants/ultimaker_s6_cc_plus04.inst.cfg
Normal file
@ -0,0 +1,17 @@
|
||||
[general]
|
||||
definition = ultimaker_s6
|
||||
name = CC+ 0.4
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
hardware_type = nozzle
|
||||
setting_version = 25
|
||||
type = variant
|
||||
|
||||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_id = CC+ 0.4
|
||||
machine_nozzle_size = 0.4
|
||||
machine_nozzle_tip_outer_diameter = 1.2
|
||||
retraction_prime_speed = =retraction_speed
|
||||
|
17
resources/variants/ultimaker_s6_cc_plus06.inst.cfg
Normal file
17
resources/variants/ultimaker_s6_cc_plus06.inst.cfg
Normal file
@ -0,0 +1,17 @@
|
||||
[general]
|
||||
definition = ultimaker_s6
|
||||
name = CC+ 0.6
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
hardware_type = nozzle
|
||||
setting_version = 25
|
||||
type = variant
|
||||
|
||||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_id = CC+ 0.6
|
||||
machine_nozzle_size = 0.6
|
||||
machine_nozzle_tip_outer_diameter = 1.2
|
||||
retraction_prime_speed = =retraction_speed
|
||||
|
17
resources/variants/ultimaker_s6_dd04.inst.cfg
Normal file
17
resources/variants/ultimaker_s6_dd04.inst.cfg
Normal file
@ -0,0 +1,17 @@
|
||||
[general]
|
||||
definition = ultimaker_s6
|
||||
name = DD 0.4
|
||||
version = 4
|
||||
|
||||
[metadata]
|
||||
hardware_type = nozzle
|
||||
setting_version = 25
|
||||
type = variant
|
||||
|
||||
[values]
|
||||
machine_nozzle_cool_down_speed = 0.9
|
||||
machine_nozzle_id = DD 0.4
|
||||
machine_nozzle_size = 0.4
|
||||
machine_nozzle_tip_outer_diameter = 1.2
|
||||
retraction_prime_speed = =retraction_speed
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user