diff --git a/.github/workflows/conan-recipe-version.yml b/.github/workflows/conan-recipe-version.yml index 78ff37b712..afa09a6d50 100644 --- a/.github/workflows/conan-recipe-version.yml +++ b/.github/workflows/conan-recipe-version.yml @@ -77,7 +77,7 @@ jobs: - name: Setup Python and pip uses: actions/setup-python@v4 with: - python-version: "3.10.x" + python-version: "3.11.x" cache: 'pip' cache-dependency-path: .github/workflows/requirements-conan-package.txt @@ -146,23 +146,19 @@ jobs: if latest_branch_tag: # %% Get the actual version - no_commits = 0 - for commit in repo.iter_commits("HEAD"): - if commit == latest_branch_tag.commit: - break - no_commits += 1 + sha_commit = repo.commit().hexsha[:6] latest_branch_version_prerelease = latest_branch_version.pre if latest_branch_version.pre and not "." in str(latest_branch_version.pre): # The prerealese did not contain a version number, default it to 1 latest_branch_version_prerelease = f"{latest_branch_version.pre}.1" if event_name == "pull_request": - actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version_prerelease).lower()}+{buildmetadata}pr_{issue_number}_{no_commits}" - channel_metadata = f"{channel}_{no_commits}" + actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version_prerelease).lower()}+{buildmetadata}pr_{issue_number}_{sha_commit}" + channel_metadata = f"{channel}_{sha_commit}" else: if channel in ("stable", "_", ""): - channel_metadata = f"{no_commits}" + channel_metadata = f"{sha_commit}" else: - channel_metadata = f"{channel}_{no_commits}" + channel_metadata = f"{channel}_{sha_commit}" if is_release_branch: if latest_branch_version.pre == "" and branch_version > latest_branch_version: actual_version = f"{branch_version.major}.{branch_version.minor}.0-beta.1+{buildmetadata}{channel_metadata}" @@ -178,18 +174,16 @@ jobs: actual_version = f"{latest_branch_version.major}.{latest_branch_version.minor}.{latest_branch_version.patch}-{str(latest_branch_version.pre).split('.')[0]}.{bump_up_release_tag}+{buildmetadata}{channel_metadata}" else: max_branches_version = Version("0.0.0") - branches_no_commits = no_commits for branch in repo.references: try: if "remotes/origin" in branch.abspath: b_version = Version(branch.name.split("/")[-1]) if b_version < Version("6.0.0") and b_version > max_branches_version: max_branches_version = b_version - branches_no_commits = repo.commit().count() - branch.commit.count() except: pass if max_branches_version > latest_branch_version: - actual_version = f"{max_branches_version.major}.{int(str(max_branches_version.minor)) + 1}.0-alpha+{buildmetadata}{channel}_{branches_no_commits}" + actual_version = f"{max_branches_version.major}.{int(str(max_branches_version.minor)) + 1}.0-alpha+{buildmetadata}{channel}_{sha_commit}" else: actual_version = f"{latest_branch_version.major}.{int(str(latest_branch_version.minor)) + 1}.0-alpha+{buildmetadata}{channel_metadata}" diff --git a/contributing.md b/CONTRIBUTING.md similarity index 56% rename from contributing.md rename to CONTRIBUTING.md index 180b6b1461..8f0e2aecc6 100644 --- a/contributing.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ Submitting bug reports ---------------------- -Please submit bug reports for all of Cura and CuraEngine to the [Cura repository](https://github.com/Ultimaker/Cura/issues). There will be a template there to fill in. Depending on the type of issue, we will usually ask for the [Cura log](Logging Issues) or a project file. +Please submit bug reports for all of Cura and CuraEngine to the [Cura repository](https://github.com/Ultimaker/Cura/issues). There will be a template there to fill in. Depending on the type of issue, we will usually ask for the [Cura log](https://github.com/Ultimaker/Cura/wiki/Reporting#cura-log) or a project file. If a bug report would contain private information, such as a proprietary 3D model, you may also e-mail us. Ask for contact information in the issue. @@ -8,14 +8,22 @@ Bugs related to supporting certain types of printers can usually not be solved b Requesting features ------------------- -The issue template in the Cura repository does not apply to feature requests. You can ignore it. - When requesting a feature, please describe clearly what you need and why you think this is valuable to users or what problem it solves. Making pull requests -------------------- -If you want to propose a change to Cura's source code, please create a pull request in the appropriate repository (being [Cura](https://github.com/Ultimaker/Cura), [Uranium](https://github.com/Ultimaker/Uranium), [CuraEngine](https://github.com/Ultimaker/CuraEngine), [fdm_materials](https://github.com/Ultimaker/fdm_materials), [libArcus](https://github.com/Ultimaker/libArcus), [cura-build](https://github.com/Ultimaker/cura-build), [cura-build-environment](https://github.com/Ultimaker/cura-build-environment), [libSavitar](https://github.com/Ultimaker/libSavitar), [libCharon](https://github.com/Ultimaker/libCharon) or [cura-binary-data](https://github.com/Ultimaker/cura-binary-data)) and if your change requires changes on multiple of these repositories, please link them together so that we know to merge them together. +If you want to propose a change to Cura's source code, please create a pull request in the appropriate repository. Since Cura has multiple repositories that influence it, we've listed the most important ones below: +* [Cura](https://github.com/Ultimaker/Cura) +* [Uranium](https://github.com/Ultimaker/Uranium) +* [CuraEngine](https://github.com/Ultimaker/CuraEngine) +* [fdm_materials](https://github.com/Ultimaker/fdm_materials) +* [libArcus](https://github.com/Ultimaker/libArcus) +* [libSavitar](https://github.com/Ultimaker/libSavitar) +* [libCharon](https://github.com/Ultimaker/libCharon) +* [cura-binary-data](https://github.com/Ultimaker/cura-binary-data)) + +If your change requires changes on multiple of these repositories, please link them together so that we know to merge & review them together. The style guide for code contributions to Cura and other Ultimaker projects can be found [here](https://github.com/Ultimaker/Meta/blob/master/general/generic_code_conventions.md). -Some of these repositories will have automated tests running when you create a pull request, indicated by green check marks or red crosses in the Github web page. If you see a red cross, that means that a test has failed. If the test doesn't fail on the Master branch but does fail on your branch, that indicates that you've probably made a mistake and you need to do that. Click on the cross for more details, or run the test locally by running `cmake . && ctest --verbose`. +Some of these repositories will have automated tests running when you create a pull request, indicated by green check marks or red crosses in the Github web page. If you see a red cross, that means that a test has failed. If the test doesn't fail on the Main branch but does fail on your branch, that indicates that you've probably made a mistake and you need to do that. Click on the cross for more details, or run the test locally by running `cmake . && ctest --verbose`. diff --git a/conanfile.py b/conanfile.py index f6e1637355..13b32065e2 100644 --- a/conanfile.py +++ b/conanfile.py @@ -49,7 +49,7 @@ class CuraConan(ConanFile): def set_version(self): if not self.version: - self.version = "5.4.0-alpha" + self.version = "5.4.0-beta" @property def _pycharm_targets(self): @@ -270,17 +270,17 @@ class CuraConan(ConanFile): def requirements(self): self.requires("pyarcus/5.2.2") - self.requires("curaengine/latest@ultimaker/testing") + self.requires("curaengine/(latest)@ultimaker/stable") self.requires("pysavitar/5.2.2") self.requires("pynest2d/5.2.2") - self.requires("uranium/(latest)@ultimaker/testing") - self.requires("cura_binary_data/(latest)@ultimaker/testing") + self.requires("uranium/(latest)@ultimaker/stable") + self.requires("cura_binary_data/(latest)@ultimaker/stable") self.requires("cpython/3.10.4") if self.options.internal: self.requires("cura_private_data/(latest)@ultimaker/testing") self.requires("fdm_materials/(latest)@internal/testing") else: - self.requires("fdm_materials/(latest)@ultimaker/testing") + self.requires("fdm_materials/(latest)@ultimaker/stable") def build_requirements(self): if self.options.devtools: diff --git a/cura/Machines/Models/IntentCategoryModel.py b/cura/Machines/Models/IntentCategoryModel.py index e94bbe6d00..4f32a84a97 100644 --- a/cura/Machines/Models/IntentCategoryModel.py +++ b/cura/Machines/Models/IntentCategoryModel.py @@ -53,6 +53,12 @@ class IntentCategoryModel(ListModel): "name": catalog.i18nc("@label", "Draft"), "description": catalog.i18nc("@text", "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction.") } + cls._translations["annealing"] = { + "name": catalog.i18nc("@label", "Annealing"), + "description": catalog.i18nc("@text", + "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance.") + + } return cls._translations def __init__(self, intent_category: str) -> None: diff --git a/cura/Machines/Models/IntentSelectionModel.py b/cura/Machines/Models/IntentSelectionModel.py index 147dedc817..1443d1427b 100644 --- a/cura/Machines/Models/IntentSelectionModel.py +++ b/cura/Machines/Models/IntentSelectionModel.py @@ -57,8 +57,8 @@ class IntentSelectionModel(ListModel): self._onChange() - _default_intent_categories = ["default", "visual", "engineering", "quick"] - _icons = {"default": "GearCheck", "visual": "Visual", "engineering": "Nut", "quick": "SpeedOMeter"} + _default_intent_categories = ["default", "visual", "engineering", "quick", "annealing"] + _icons = {"default": "GearCheck", "visual": "Visual", "engineering": "Nut", "quick": "SpeedOMeter", "annealing": "Anneal"} def _onContainerChange(self, container: ContainerInterface) -> None: """Updates the list of intents if an intent profile was added or removed.""" diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json index 61b0653b06..d79a0cb045 100644 --- a/resources/definitions/fdmextruder.def.json +++ b/resources/definitions/fdmextruder.def.json @@ -7,7 +7,7 @@ "author": "Ultimaker", "manufacturer": "Unknown", "position": "0", - "setting_version": 21, + "setting_version": 22, "type": "extruder" }, "settings": diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index a6c10f705e..8de3fbf7d4 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6,7 +6,7 @@ "type": "machine", "author": "Unknown", "manufacturer": "Unknown", - "setting_version": 21, + "setting_version": 22, "file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g", "visible": false, "has_materials": true, @@ -3065,6 +3065,16 @@ "enabled": "extruders_enabled_count > 1 and machine_nozzle_temp_enabled", "settable_per_mesh": false, "settable_per_extruder": true + }, + "material_is_support_material": + { + "label": "Is support material", + "description": "Is this material typically used as a support material during printing.", + "type": "bool", + "default_value": false, + "enabled": false, + "settable_per_mesh": false, + "settable_per_extruder": true } } }, @@ -4478,8 +4488,8 @@ "description": "The extruder train to use for printing the support. This is used in multi-extrusion.", "type": "extruder", "default_value": "0", - "value": "int(defaultExtruderPosition())", "enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1", + "value": "[*map(lambda x: str(x).lower() == 'true', (extruderValues('support_enable') and extruderValues('material_is_support_material')))].index(True) if any([*map(lambda x: str(x).lower() == 'true', (extruderValues('support_enable') and extruderValues('material_is_support_material')))]) else int(defaultExtruderPosition())", "settable_per_mesh": false, "settable_per_extruder": false, "children": @@ -4755,8 +4765,8 @@ "type": "enum", "options": { - "buildplate": "Force Only Buildplate", - "graceful": "On Model If Necessary" + "buildplate": "On buildplate when possible", + "graceful": "On model if required" }, "default_value": "buildplate", "value": "'buildplate' if support_type == 'buildplate' else 'graceful'", diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index ee5821988a..87168d20ae 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -45,6 +45,7 @@ "gradual_support_infill_step_height": { "value": "4 * layer_height" }, "gradual_support_infill_steps": { "value": "2 if support_interface_enable and support_structure != 'tree' else 0" }, "infill_material_flow": { "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" }, + "infill_overlap": { "value": "0 if infill_sparse_density > 80 else 10" }, "inset_direction": { "value": "'outside_in'" }, "jerk_infill": { "minimum_value_warning": 20 }, "jerk_prime_tower": { "minimum_value_warning": 20 }, @@ -112,6 +113,7 @@ "skin_material_flow": { "value": "0.95 * material_flow" }, "skin_material_flow_layer_0": { "value": "0.9 * material_flow_layer_0" }, "skin_monotonic": { "value": "roofing_layer_count == 0" }, + "skin_overlap": { "value": "20" }, "speed_equalize_flow_width_factor": { "value": "110.0" }, "speed_layer_0": { "value": "min(30, layer_height / layer_height_0 * speed_wall_0)" }, "speed_slowdown_layers": { "value": 1 }, diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 0cf31c7f66..238df96300 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -60,12 +60,12 @@ "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 3500)" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, + "brim_gap": { "value": "-xy_offset_layer_0 + 0.05" }, "brim_width": { "value": "3" }, "cool_fan_speed": { "value": "50" }, "default_material_print_temperature": { "value": "200" }, "extruder_prime_pos_abs": { "default_value": true }, "gantry_height": { "value": "55" }, - "infill_overlap": { "value": "0" }, "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_wipe_dist": { "value": "0" }, "jerk_enabled": { "value": "True" }, @@ -111,7 +111,6 @@ "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, "retraction_speed": { "value": "45" }, - "skin_overlap": { "value": "10" }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_print": { "value": "35" }, "speed_support": { "value": "speed_wall_0" }, diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 8bb086a654..092a16fa6e 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -58,13 +58,13 @@ "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 1000 / 3500)" }, "acceleration_wall": { "value": "math.ceil(acceleration_print * 1500 / 3500)" }, "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 1000 / 1000)" }, + "brim_gap": { "value": "-xy_offset_layer_0 + 0.05" }, "brim_width": { "value": "3" }, "build_volume_temperature": { "maximum_value": 50 }, "cool_fan_speed": { "value": "50" }, "default_material_print_temperature": { "value": "200" }, "extruder_prime_pos_abs": { "default_value": true }, "gantry_height": { "value": "55" }, - "infill_overlap": { "value": "0" }, "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, "infill_wipe_dist": { "value": "0" }, "jerk_enabled": { "value": "True" }, @@ -112,7 +112,6 @@ "retraction_min_travel": { "value": "5" }, "retraction_prime_speed": { "value": "15" }, "retraction_speed": { "value": "45" }, - "skin_overlap": { "value": "10" }, "speed_prime_tower": { "value": "speed_topbottom" }, "speed_print": { "value": "35" }, "speed_support": { "value": "speed_wall_0" }, diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index e1f3898afd..2e083eb5bc 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: 2023-02-16 20:28+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5083,7 +5095,7 @@ msgstr[0] "Tisknout vybraný model pomocí:" msgstr[1] "Tisknout vybrané modely pomocí:" msgstr[2] "Tisknout vybrané modely pomocí:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -5091,7 +5103,7 @@ msgstr[0] "Násobit vybraný model" msgstr[1] "Násobit vybrané modele" msgstr[2] "Násobit vybrané modele" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Počet kopií" @@ -6716,22 +6728,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Přidat tiskárnu manuálně" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Výrobce" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor profilu" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Název tiskárny" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Pojmenujte prosím svou tiskárnu" diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index f0fd2f1095..41266dff13 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -1391,11 +1391,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Pro struktury o šířce okolo jedno až dvojnásobku velikosti trysky musí být šířky čar upravovány, aby to se dodržovala správná tloušťka modelu. Toto nastavení ovládá minimální dovolenou šířku čáry pro zdi. Z minimální šířky čáry se také odvozuje maximální šířka, jelikož při určité tloušťce tvaru se přechází z N na N + 1 zdí, kdy je N zdí širokých, zatímco N + 1 zdi jsou úzké. Nejvyšší možná šířka čáry zdi je tedy dvojnásobek tohoto nastavení." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2122,11 +2117,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Je střed počátek" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Je tento materiál typem, který se při zahřívání (krystalický) čistě rozpadá, nebo jde o typ, který vytváří dlouhé propletené polymerní řetězce (nekrystalické)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2912,9 +2917,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Offset s extrudérem" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index a4746a4ce8..2415f92673 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -374,6 +374,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "" +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -4414,14 +4426,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "" msgstr[1] "" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "" msgstr[1] "" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "" @@ -6019,22 +6031,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "" @@ -6244,286 +6256,6 @@ msgstr "" msgctxt "@label" msgid "No items to select from" msgstr "" -#: plugins/UltimakerMachineActions/plugin.json -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "" - -#: plugins/UltimakerMachineActions/plugin.json -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "" - -#: plugins/SupportEraser/plugin.json -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "" - -#: plugins/SupportEraser/plugin.json -msgctxt "name" -msgid "Support Eraser" -msgstr "" - -#: plugins/GCodeGzReader/plugin.json -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "" - -#: plugins/GCodeGzReader/plugin.json -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "" - -#: plugins/SentryLogger/plugin.json -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "" - -#: plugins/SentryLogger/plugin.json -msgctxt "name" -msgid "Sentry Logger" -msgstr "" - -#: plugins/CuraProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "" - -#: plugins/CuraProfileReader/plugin.json -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "" - -#: plugins/3MFWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing 3MF files." -msgstr "" - -#: plugins/3MFWriter/plugin.json -msgctxt "name" -msgid "3MF Writer" -msgstr "" - -#: plugins/PerObjectSettingsTool/plugin.json -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "" - -#: plugins/PerObjectSettingsTool/plugin.json -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "" - -#: plugins/PrepareStage/plugin.json -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "" - -#: plugins/PrepareStage/plugin.json -msgctxt "name" -msgid "Prepare Stage" -msgstr "" - -#: plugins/TrimeshReader/plugin.json -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "" - -#: plugins/TrimeshReader/plugin.json -msgctxt "name" -msgid "Trimesh Reader" -msgstr "" - -#: plugins/Marketplace/plugin.json -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "" - -#: plugins/Marketplace/plugin.json -msgctxt "name" -msgid "Marketplace" -msgstr "" - -#: plugins/LegacyProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "" - -#: plugins/LegacyProfileReader/plugin.json -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "" - -#: plugins/GCodeProfileReader/plugin.json -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "" - -#: plugins/GCodeProfileReader/plugin.json -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "" - -#: plugins/CuraDrive/plugin.json -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "" - -#: plugins/CuraDrive/plugin.json -msgctxt "name" -msgid "Cura Backups" -msgstr "" - -#: plugins/3MFReader/plugin.json -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "" - -#: plugins/3MFReader/plugin.json -msgctxt "name" -msgid "3MF Reader" -msgstr "" - -#: plugins/X3DReader/plugin.json -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "" - -#: plugins/X3DReader/plugin.json -msgctxt "name" -msgid "X3D Reader" -msgstr "" - -#: plugins/RemovableDriveOutputDevice/plugin.json -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "" - -#: plugins/RemovableDriveOutputDevice/plugin.json -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "" - -#: plugins/FirmwareUpdateChecker/plugin.json -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "" - -#: plugins/FirmwareUpdateChecker/plugin.json -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "" - -#: plugins/MachineSettingsAction/plugin.json -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "" - -#: plugins/MachineSettingsAction/plugin.json -msgctxt "name" -msgid "Machine Settings Action" -msgstr "" - -#: plugins/XmlMaterialProfile/plugin.json -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "" - -#: plugins/XmlMaterialProfile/plugin.json -msgctxt "name" -msgid "Material Profiles" -msgstr "" - -#: plugins/UFPReader/plugin.json -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "" - -#: plugins/UFPReader/plugin.json -msgctxt "name" -msgid "UFP Reader" -msgstr "" - -#: plugins/CuraEngineBackend/plugin.json -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "" - -#: plugins/CuraEngineBackend/plugin.json -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "" - -#: plugins/GCodeReader/plugin.json -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "" - -#: plugins/GCodeReader/plugin.json -msgctxt "name" -msgid "G-code Reader" -msgstr "" - -#: plugins/CuraProfileWriter/plugin.json -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "" - -#: plugins/CuraProfileWriter/plugin.json -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "" - -#: plugins/SimulationView/plugin.json -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "" - -#: plugins/SimulationView/plugin.json -msgctxt "name" -msgid "Simulation View" -msgstr "" - -#: plugins/UM3NetworkPrinting/plugin.json -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "" - -#: plugins/UM3NetworkPrinting/plugin.json -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "" - -#: plugins/XRayView/plugin.json -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "" - -#: plugins/XRayView/plugin.json -msgctxt "name" -msgid "X-Ray View" -msgstr "" - -#: plugins/UFPWriter/plugin.json -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "" - -#: plugins/UFPWriter/plugin.json -msgctxt "name" -msgid "UFP Writer" -msgstr "" - -#: plugins/GCodeWriter/plugin.json -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "" - -#: plugins/GCodeWriter/plugin.json -msgctxt "name" -msgid "G-code Writer" -msgstr "" - #: plugins/MonitorStage/plugin.json msgctxt "description" msgid "Provides a monitor stage in Cura." @@ -6534,26 +6266,6 @@ msgctxt "name" msgid "Monitor Stage" msgstr "" -#: plugins/FirmwareUpdater/plugin.json -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "" - -#: plugins/FirmwareUpdater/plugin.json -msgctxt "name" -msgid "Firmware Updater" -msgstr "" - -#: plugins/SolidView/plugin.json -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "" - -#: plugins/SolidView/plugin.json -msgctxt "name" -msgid "Solid View" -msgstr "" - #: plugins/SliceInfoPlugin/plugin.json msgctxt "description" msgid "Submits anonymous slice info. Can be disabled through preferences." @@ -6564,6 +6276,26 @@ msgctxt "name" msgid "Slice info" msgstr "" +#: plugins/PrepareStage/plugin.json +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "" + +#: plugins/PrepareStage/plugin.json +msgctxt "name" +msgid "Prepare Stage" +msgstr "" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "" + +#: plugins/CuraProfileWriter/plugin.json +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "" + #: plugins/ImageReader/plugin.json msgctxt "description" msgid "Enables ability to generate printable geometry from 2D image files." @@ -6574,6 +6306,136 @@ msgctxt "name" msgid "Image Reader" msgstr "" +#: plugins/SimulationView/plugin.json +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "" + +#: plugins/SimulationView/plugin.json +msgctxt "name" +msgid "Simulation View" +msgstr "" + +#: plugins/3MFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "" + +#: plugins/3MFReader/plugin.json +msgctxt "name" +msgid "3MF Reader" +msgstr "" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "" + +#: plugins/CuraProfileReader/plugin.json +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "" + +#: plugins/TrimeshReader/plugin.json +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "" + +#: plugins/TrimeshReader/plugin.json +msgctxt "name" +msgid "Trimesh Reader" +msgstr "" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "" + +#: plugins/GCodeProfileReader/plugin.json +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "" + +#: plugins/RemovableDriveOutputDevice/plugin.json +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "" + +#: plugins/XmlMaterialProfile/plugin.json +msgctxt "name" +msgid "Material Profiles" +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "" + +#: plugins/Marketplace/plugin.json +msgctxt "name" +msgid "Marketplace" +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "" + +#: plugins/UM3NetworkPrinting/plugin.json +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "" + +#: plugins/UltimakerMachineActions/plugin.json +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "" + +#: plugins/ModelChecker/plugin.json +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "" + +#: plugins/ModelChecker/plugin.json +msgctxt "name" +msgid "Model Checker" +msgstr "" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "" + +#: plugins/LegacyProfileReader/plugin.json +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "" + +#: plugins/SentryLogger/plugin.json +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "" + +#: plugins/SentryLogger/plugin.json +msgctxt "name" +msgid "Sentry Logger" +msgstr "" + #: plugins/PostProcessingPlugin/plugin.json msgctxt "description" msgid "Extension that allows for user created scripts for post processing" @@ -6584,94 +6446,34 @@ msgctxt "name" msgid "Post Processing" msgstr "" -#: plugins/AMFReader/plugin.json +#: plugins/GCodeGzReader/plugin.json msgctxt "description" -msgid "Provides support for reading AMF files." +msgid "Reads g-code from a compressed archive." msgstr "" -#: plugins/AMFReader/plugin.json +#: plugins/GCodeGzReader/plugin.json msgctxt "name" -msgid "AMF Reader" +msgid "Compressed G-code Reader" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +#: plugins/USBPrinting/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +#: plugins/USBPrinting/plugin.json msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" +msgid "USB printing" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +#: plugins/SolidView/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgid "Provides a normal solid mesh view." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +#: plugins/SolidView/plugin.json msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" +msgid "Solid View" msgstr "" #: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json @@ -6684,34 +6486,24 @@ msgctxt "name" msgid "Version Upgrade 2.2 to 2.4" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" +msgid "Version Upgrade 4.1 to 4.2" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" +msgid "Version Upgrade 4.7 to 4.8" msgstr "" #: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json @@ -6724,44 +6516,64 @@ msgctxt "name" msgid "Version Upgrade 3.0 to 3.1" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" +msgid "Version Upgrade 3.5 to 4.0" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" +msgid "Version Upgrade 2.5 to 2.6" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" +msgid "Version Upgrade 4.6.2 to 4.7" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" msgstr "" #: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json @@ -6784,6 +6596,36 @@ msgctxt "name" msgid "Version Upgrade 4.11 to 4.12" msgstr "" +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "" + #: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json msgctxt "description" msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." @@ -6794,24 +6636,24 @@ msgctxt "name" msgid "Version Upgrade 4.13 to 5.0" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" +msgid "Version Upgrade 4.3 to 4.4" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" +msgid "Version Upgrade 4.8 to 4.9" msgstr "" #: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json @@ -6824,24 +6666,104 @@ msgctxt "name" msgid "Version Upgrade 4.0 to 4.1" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" +msgid "Version Upgrade 3.2 to 3.3" msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." msgstr "" -#: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json +#: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +#: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +#: plugins/XRayView/plugin.json +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "" + +#: plugins/XRayView/plugin.json +msgctxt "name" +msgid "X-Ray View" +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "" + +#: plugins/UFPReader/plugin.json +msgctxt "name" +msgid "UFP Reader" +msgstr "" + +#: plugins/3MFWriter/plugin.json +msgctxt "description" +msgid "Provides support for writing 3MF files." +msgstr "" + +#: plugins/3MFWriter/plugin.json +msgctxt "name" +msgid "3MF Writer" +msgstr "" + +#: plugins/GCodeWriter/plugin.json +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "" + +#: plugins/GCodeWriter/plugin.json +msgctxt "name" +msgid "G-code Writer" msgstr "" #: plugins/DigitalLibrary/plugin.json @@ -6854,24 +6776,34 @@ msgctxt "name" msgid "Ultimaker Digital Library" msgstr "" -#: plugins/ModelChecker/plugin.json +#: plugins/PerObjectSettingsTool/plugin.json msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgid "Provides the Per Model Settings." msgstr "" -#: plugins/ModelChecker/plugin.json +#: plugins/PerObjectSettingsTool/plugin.json msgctxt "name" -msgid "Model Checker" +msgid "Per Model Settings Tool" msgstr "" -#: plugins/USBPrinting/plugin.json +#: plugins/UFPWriter/plugin.json msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgid "Provides support for writing Ultimaker Format Packages." msgstr "" -#: plugins/USBPrinting/plugin.json +#: plugins/UFPWriter/plugin.json msgctxt "name" -msgid "USB printing" +msgid "UFP Writer" +msgstr "" + +#: plugins/GCodeReader/plugin.json +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "" + +#: plugins/GCodeReader/plugin.json +msgctxt "name" +msgid "G-code Reader" msgstr "" #: plugins/GCodeGzWriter/plugin.json @@ -6884,6 +6816,76 @@ msgctxt "name" msgid "Compressed G-code Writer" msgstr "" +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "" + +#: plugins/FirmwareUpdateChecker/plugin.json +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "" + +#: plugins/FirmwareUpdater/plugin.json +msgctxt "name" +msgid "Firmware Updater" +msgstr "" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "" + +#: plugins/CuraEngineBackend/plugin.json +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "" + +#: plugins/CuraDrive/plugin.json +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "" + +#: plugins/CuraDrive/plugin.json +msgctxt "name" +msgid "Cura Backups" +msgstr "" + +#: plugins/X3DReader/plugin.json +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "" + +#: plugins/X3DReader/plugin.json +msgctxt "name" +msgid "X3D Reader" +msgstr "" + +#: plugins/SupportEraser/plugin.json +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "" + +#: plugins/SupportEraser/plugin.json +msgctxt "name" +msgid "Support Eraser" +msgstr "" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "" + +#: plugins/MachineSettingsAction/plugin.json +msgctxt "name" +msgid "Machine Settings Action" +msgstr "" + #: plugins/PreviewStage/plugin.json msgctxt "description" msgid "Provides a preview stage in Cura." @@ -6894,3 +6896,13 @@ msgctxt "name" msgid "Preview Stage" msgstr "" +#: plugins/AMFReader/plugin.json +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "" + +#: plugins/AMFReader/plugin.json +msgctxt "name" +msgid "AMF Reader" +msgstr "" + diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 4c01e691ce..eca1c33d04 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5071,14 +5083,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Ausgewähltes Modell drucken mit:" msgstr[1] "Ausgewählte Modelle drucken mit:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Ausgewähltes Modell multiplizieren" msgstr[1] "Ausgewählte Modelle multiplizieren" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Anzahl Kopien" @@ -6695,22 +6707,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Drucker manuell hinzufügen" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Hersteller" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor des Profils" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Druckername" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 485ccb7afe..27d21c5acb 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Bei dünnen Strukturen, die etwa ein- bis zweimal so groß sind wie die Düse, müssen die Linienstärken an die Dicke des Modells angepasst werden. Mit dieser Einstellung wird die Mindestlinienstärke für die Wände festgelegt. Die minimalen Linienstärken bestimmen gleichzeitig auch die maximalen Linienstärken, da wir bei einer gewissen Stärke der Geometrie von N- auf N+1-Wände übergehen, wobei die N-Wände breit und die N+1-Wände schmal sind. Die maximale Wandlinienstärke beträgt das Doppelte der minimalen Wandlinienstärke." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Is-Center-Ursprung" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Lässt sich das Material im erhitzten Zustand leicht brechen (kristallin) oder bildet es lange, verflochtene Polymerketten (nicht kristallin)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Versatz mit Extruder" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 4112941492..dcaffe4d04 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -377,6 +377,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5071,14 +5083,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Imprimir modelo seleccionado con:" msgstr[1] "Imprimir modelos seleccionados con:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar modelo seleccionado" msgstr[1] "Multiplicar modelos seleccionados" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Número de copias" @@ -6695,22 +6707,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Añadir impresora manualmente" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor del perfil" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nombre de la impresora" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Asigne un nombre a su impresora" diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 3a35f1cb74..b4e81e77e2 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Para estructuras delgadas, aproximadamente una o dos veces el tamaño de la boquilla, los anchos de línea deben cambiarse para que coincidan con el grosor del modelo. Esta configuración controla el ancho de línea mínimo permitido para las paredes. Los anchos de línea mínimos también determinan de forma inherente los anchos de línea máximos, ya que la transición de N a N + 1 paredes se realiza con un grosor geométrico donde N paredes son anchas y N + 1 paredes son estrechas. La línea perimetral más ancha posible es el doble del ancho mínimo de la línea perimetral." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "El origen está centrado" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "¿Es este el tipo de material que se desprende limpiamente cuando se calienta (cristalino) o el que produce largas cadenas de polímeros entrelazadas (no cristalino)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Desplazamiento con extrusor" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 957a1ecbb9..09cc847992 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -2651,6 +2651,16 @@ msgctxt "material_standby_temperature description" msgid "The temperature of the nozzle when another nozzle is currently used for printing." msgstr "" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "speed label" msgid "Speed" @@ -3918,12 +3928,12 @@ msgstr "" #: fdmprinter.def.json msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" +msgid "On buildplate when possible" msgstr "" #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index bddad873cb..8edc5e4a2a 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: 2022-07-15 10:53+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -370,6 +370,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "" +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5040,14 +5052,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Tulosta valittu malli asetuksella:" msgstr[1] "Tulosta valitut mallit asetuksella:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Kerro valittu malli" msgstr[1] "Kerro valitut mallit" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Kopioiden määrä" @@ -6657,22 +6669,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index bcbd063c11..525b3df5dd 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -1388,11 +1388,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "" -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2117,11 +2112,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "On keskikohdassa" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2907,9 +2912,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index dafbc5d470..2cac46b202 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5071,14 +5083,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Imprimer le modèle sélectionné avec :" msgstr[1] "Imprimer les modèles sélectionnés avec :" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplier le modèle sélectionné" msgstr[1] "Multiplier les modèles sélectionnés" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Nombre de copies" @@ -6695,22 +6707,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Ajouter l'imprimante manuellement" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricant" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Auteur du profil" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nom de l'imprimante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Veuillez nommer votre imprimante" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 46ff5b5595..fcfcae93a6 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Pour les structures fines dont la taille correspond à une ou deux fois celle de la buse, il faut modifier la largeur des lignes pour respecter l'épaisseur du modèle. Ce paramètre contrôle la largeur de ligne minimale autorisée pour les parois. Les largeurs de lignes minimales déterminent également les largeurs de lignes maximales, puisque nous passons de N à N+1 parois à une certaine épaisseur géométrique où les N parois sont larges et les N+1 parois sont étroites. La ligne de paroi la plus large possible est égale à deux fois la largeur minimale de la ligne de paroi." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Est l'origine du centre" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Ce matériau se casse-t-il proprement lorsqu'il est chauffé (cristallin) ou est-ce le type qui produit de longues chaînes polymères entrelacées (non cristallines) ?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Décalage avec extrudeuse" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index aeafd2a4d9..779fa540d2 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "" +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5054,14 +5066,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Kiválasztott modell nyomtatása:" msgstr[1] "Kiválasztott modellek nyomtatása:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Kiválasztott modell sokszorozása" msgstr[1] "Kiválasztott modellek sokszorozása" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Másolatok száma" @@ -6671,22 +6683,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nyomtató név" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 231554a57a..063f7f876e 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -1391,11 +1391,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "" -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2124,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Origó a középpontban" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Az anyag olyan típusú-e, ami melegítve tiszta módon, kikristályosodva bomlik le, vagy olyan, ami nem kristályos, összefonódott polimer láncokat hoz létre?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2914,9 +2919,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Extruder eltolás" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index e04605605c..da2f086787 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "Il profilo bozza è destinato alla stampa dei prototipi iniziali e alla convalida dei concept, con l'intento di ridurre in modo significativo il tempo di stampa." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5074,14 +5086,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Stampa modello selezionato con:" msgstr[1] "Stampa modelli selezionati con:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Moltiplica modello selezionato" msgstr[1] "Moltiplica modelli selezionati" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Numero di copie" @@ -6698,22 +6710,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Aggiungere la stampante manualmente" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Produttore" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autore profilo" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nome stampante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Dare un nome alla stampante" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 6108cf019c..41679583d2 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Per strutture sottili, circa una o due volte la dimensione dell'ugello, le larghezze delle linee devono essere modificate per rispettare lo spessore del modello. Questa impostazione controlla la larghezza minima della linea consentita per le pareti. Le larghezze minime delle linee determinano intrinsecamente anche le larghezze massime delle linee, poiché si esegue la transizione da N a N+1 pareti ad uno spessore geometrico in cui le pareti N sono larghe e le pareti N+1 sono strette. La linea perimetrale più larga possible è due volte la larghezza minima della linea perimetrale." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Origine del centro" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Questo tipo di materiale è quello che si stacca in modo netto quando viene riscaldato (cristallino) oppure è il tipo che produce lunghe catene di polimeri intrecciati (non cristallino)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Offset con estrusore" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 4f98644dfb..90c2b79d04 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "ドラフトプロファイルは、プリント時間の大幅短縮を目的とした初期プロトタイプとコンセプト検証をプリントするために設計されています。" +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5061,13 +5073,13 @@ msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "選択したモデルで印刷:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "選択した複数のモデル" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "コピーの数" @@ -6677,22 +6689,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "プリンタを手動で追加する" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "製造元" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "プロファイル作成者" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "プリンター名" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "プリンターに名前を付けてください" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index b35499f296..c66166a048 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "中心位置" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "エクストルーダーのオフセット" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index cec96852b6..ae4fcd59b3 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "초안 프로파일은 인쇄 시간을 상당히 줄이려는 의도로 초기 프로토타입과 컨셉트 확인을 인쇄하도록 설계되었습니다." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5060,13 +5072,13 @@ msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "선택된 모델 프린팅 :" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "선택한 모델 복" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "복제할 수" @@ -6680,22 +6692,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "수동으로 프린터 추가" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "제조업체" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "프로파일 원작자" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "프린터 이름" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "프린터의 이름을 설정하십시오" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 38f4eb3b1a..a832de72ee 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "노즐 크기의 1~2배 정도의 얇은 구조물의 경우 모델의 두께에 맞게 선 너비를 변경해야 합니다. 이 설정은 벽에 허용되는 최소 선 너비를 제어합니다. N개의 벽이 넓고 N+1개의 벽이 좁은 일부 형상 두께에서는 N개의 벽에서 N+1개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "센터 원점" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "익스트루더로 오프셋" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index 127595c03e..c9cfebf412 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "Het ontwerpprofiel is ontworpen om initiële prototypen en conceptvalidatie te printen met als doel de printtijd aanzienlijk te verkorten." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5074,14 +5086,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Geselecteerd model printen met:" msgstr[1] "Geselecteerde modellen printen met:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Geselecteerd model verveelvoudigen" msgstr[1] "Geselecteerde modellen verveelvoudigen" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Aantal exemplaren" @@ -6698,22 +6710,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Printer handmatig toevoegen" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabrikant" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Profieleigenaar" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Printernaam" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Geef uw printer een naam" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index bad2fa3c5f..e75e13bfab 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Bij dunne structuren die ongeveer één of tweemaal zo groot als de nozzle zijn, moeten de lijnbreedtes worden aangepast aan de dikte van het model. Met deze instelling beheert u de minimum lijnbreedte die voor wanden is toegestaan. De minimum lijnbreedte bepaalt automatisch ook de maximale lijnbreedte, omdat we bij een bepaalde geometriedikte overgaan van wanden van N naar wanden van N+1, waarbij de N-wanden breed zijn en de N+1-wanden smal. De breedst mogelijke wandlijn is tweemaal de minimumbreedte van de wandlijn." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Is oorsprongpunt centraal" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Breekt dit materiaal recht af wanneer het wordt verwarmd (kristallijn) of produceert het lange, met elkaar verweven polymeerketens (niet-kristallijn)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Offset met extruder" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index 6d1fc79097..d1e7e3d689 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: 2021-09-07 08:02+0200\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -379,6 +379,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "Profil szkicu służy do drukowania początkowych prototypów i weryfikacji koncepcji z naciskiem na krótki czasu drukowania." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5057,14 +5069,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Wydrukuj wybrany model z:" msgstr[1] "Wydrukuj wybrane modele z:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Zduplikuj wybrany model" msgstr[1] "Zduplikuj wybrane modele" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Liczba kopii" @@ -6674,22 +6686,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Producent" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nazwa drukarki" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 48be25a8b3..33f5a0650c 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -1390,11 +1390,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "" -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2123,11 +2118,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Środek to Początek" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Czy ten rodzaj materiału odłamuje się łatwo po podgrzaniu (krystaliczny), czy też jest to tworzywo, które wytwarza długie splecione łańcuchy polimerowe (niekrystaliczne)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2913,9 +2918,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Przesunięcie ekstrudera" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 89678c5ea0..987c61cc98 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: 2023-02-17 17:37+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5071,14 +5083,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Imprimir Modelo Selecionado Com:" msgstr[1] "Imprimir Modelos Selecionados Com:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar Modelo Selecionado" msgstr[1] "Multiplicar Modelos Selecionados" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Número de Cópias" @@ -6700,22 +6712,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Adicionar impressora manualmente" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor do perfil" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nome da impressora" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Por favor dê um nome à sua impressora" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index b7556904a2..73e22588ba 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: 2023-02-17 16:31+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -1391,11 +1391,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2124,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Origem é no Centro" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2914,9 +2919,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Deslocamento com o Extrusor" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 9bbc049853..91a41d2553 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "O perfil de rascunho foi concebido para imprimir protótipos de teste e de validação de conceitos com o objetivo de se obter uma redução significativa do tempo de impressão." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5072,14 +5084,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Imprimir Modelo Selecionado Com:" msgstr[1] "Imprimir modelos selecionados com:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Multiplicar Modelo Selecionado" msgstr[1] "Multiplicar modelos selecionados" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Número de Cópias" @@ -6697,22 +6709,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Adicionar impressora manualmente" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Autor do perfil" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Nome da impressora" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Atribuir um nome à impressora" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 085c134216..befc079404 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "O Centro é a Origem" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Este tipo de material é daquele que se separa de forma regular quando aquecido (cristalino) ou daquele que cria longas cadeias de polímero entrelaçado (não cristalino)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Desviar com extrusor" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 71b980157b..d08bb489f0 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5084,7 +5096,7 @@ msgstr[0] "Печать выбранной модели:" msgstr[1] "Печать выбранных моделей:" msgstr[2] "Печать выбранных моделей:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -5092,7 +5104,7 @@ msgstr[0] "Размножить выбранную модель" msgstr[1] "Размножить выбранные модели" msgstr[2] "Размножить выбранные модели" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Количество копий" @@ -6712,22 +6724,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Добавить принтер вручную" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Производитель" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Автор профиля" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Имя принтера" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Присвойте имя принтеру" diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 0e15fb2991..2c3eb0a0e7 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Для тонких структур, шириной не более одного или двух размеров сопла, ширину линии необходимо изменить таким образом, чтобы она соответствовала толщине модели. Этот параметр задает минимальную допустимую ширину линии стенки. Минимальная ширина линии одновременно определяет максимальную ширину линии, поскольку выполняется переход от N к N+1 стенкам при некоторой геометрической толщине, где N стенок —— широкие, а N+1 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Начало координат в центре" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Смещение с экструдером" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index bc386e3192..6b5ad1436d 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "Taslak profili, baskı süresinin önemli ölçüde kısaltılması amacıyla, birincil prototipler basılması ve konsept doğrulaması yapılması için tasarlanmıştır." +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5074,14 +5086,14 @@ msgid_plural "Print Selected Models With:" msgstr[0] "Seçili Modeli Şununla Yazdır:" msgstr[1] "Seçili Modelleri Şununla Yazdır:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "Seçili Modeli Çoğalt" msgstr[1] "Seçili Modelleri Çoğalt" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "Kopya Sayısı" @@ -6698,22 +6710,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Yazıcıyı manuel olarak ekle" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "Üretici" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "Profil sahibi" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "Yazıcı adı" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "Lütfen yazıcınızı adlandırın" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index bbbc2f9f28..7356a81f1b 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Nozül boyutunun bir veya iki katı kadar olan ince yapılarda modelin kalınlığına bağlı olarak hat genişliklerinin değiştirilmesi gerekir. Bu ayar, duvarlar için izin verilen minimum hat genişliğini kontrol eder. Minimum hat genişlikleri, N duvarlarının geniş ve N+1 duvarlarının dar olduğu bazı geometrik kalınlıklarda N duvardan N+1 duvara geçildiği için maksimum hat genişliklerini de belirler. Mümkün olan en geniş duvar hattı Minimum Duvar Hattı Genişliğinin iki katıdır." -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "Merkez Nokta" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "Bu malzeme ısıtıldığında temiz bir şekilde parçalanan tür de mi (kristalli) yoksa uzun iç içe polimer zincirler (kristal olmayan) oluşturan türde mi?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "Ekstruder Ofseti" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 322c089f93..3ffab5204b 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: 2022-07-15 11:06+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "草稿配置文件用于打印初始原型和概念验证,可大大缩短打印时间。" +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5062,13 +5074,13 @@ msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "打印所选模型:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "复制所选模型" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "复制个数" @@ -6682,22 +6694,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "手动添加打印机" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "制造商" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "配置文件作者" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "打印机名称" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "请为您的打印机命名" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index c07b05b7e6..8447628837 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1386,11 +1386,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时,N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2119,11 +2114,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "位于中心" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2909,9 +2914,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "挤出机偏移量" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index 33f4ba0162..0252c68e03 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-15 14:32+0000\n" +"POT-Creation-Date: 2023-06-06 10:46+0000\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -378,6 +378,18 @@ msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." msgstr "草稿參數是設計來縮短時間,快速列印初始原型和概念驗證。" +#: cura/Machines/Models/IntentCategoryModel.py:57 +#: cura/Machines/Models/IntentSelectionModel.py:80 +msgctxt "@label" +msgid "Annealing" +msgstr "" + +#: cura/Machines/Models/IntentCategoryModel.py:59 +#: cura/Machines/Models/IntentSelectionModel.py:82 +msgctxt "@text" +msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." +msgstr "" + #: cura/Machines/Models/MaterialManagementModel.py:232 msgctxt "@label" msgid "Custom Material" @@ -5060,13 +5072,13 @@ msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" msgstr[0] "列印所選模型:" -#: resources/qml/Menus/ContextMenu.qml:92 +#: resources/qml/Menus/ContextMenu.qml:103 msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" msgstr[0] "複製所選模型" -#: resources/qml/Menus/ContextMenu.qml:123 +#: resources/qml/Menus/ContextMenu.qml:134 msgctxt "@label" msgid "Number of Copies" msgstr "複製個數" @@ -6673,22 +6685,22 @@ msgctxt "@button" msgid "Add printer manually" msgstr "手動新增印表機" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214 msgctxt "@label" msgid "Manufacturer" msgstr "製造商" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:223 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225 msgctxt "@label" msgid "Profile author" msgstr "列印參數作者" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:237 msgctxt "@label" msgid "Printer name" msgstr "印表機名稱" -#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:241 +#: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:243 msgctxt "@text" msgid "Please name your printer" msgstr "請為你的印表機取一個名稱" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 011a73f6fd..e225c321a6 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-04-28 10:03+0000\n" +"POT-Creation-Date: 2023-06-06 13:48+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -1391,11 +1391,6 @@ msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "" -#: fdmprinter.def.json -msgctxt "support_tree_rest_preference option buildplate" -msgid "Force Only Buildplate" -msgstr "" - #: fdmprinter.def.json msgctxt "z_seam_position option front" msgid "Front" @@ -2124,11 +2119,21 @@ msgctxt "machine_center_is_zero label" msgid "Is Center Origin" msgstr "原點是否位於中心" +#: fdmprinter.def.json +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "" + #: fdmprinter.def.json msgctxt "material_crystallinity description" msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" msgstr "這種線材高溫時是脆斷的類型(晶狀),還是拉絲的類型(非晶狀)?" +#: fdmprinter.def.json +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "" + #: fdmprinter.def.json msgctxt "magic_fuzzy_skin_outside_only description" msgid "Jitter only the parts' outlines and not the parts' holes." @@ -2914,9 +2919,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords label" msgid "Offset with Extruder" msgstr "擠出機偏移量" +#: fdmprinter.def.json +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "" + #: fdmprinter.def.json msgctxt "support_tree_rest_preference option graceful" -msgid "On Model If Necessary" +msgid "On model if required" msgstr "" #: fdmprinter.def.json diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg new file mode 100644 index 0000000000..e042d43090 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s3 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..2edf56f19b --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..8d8ec0f3fd --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s3 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..7204c13c5e --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg new file mode 100644 index 0000000000..90f8fb6c16 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s3 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..f8a4feb35e --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..392f21098a --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s3 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..4ff1aa7403 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg new file mode 100644 index 0000000000..923467092e --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s5 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..502547c056 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..8a09c840a1 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s5 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..796c2b39c2 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 20 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg new file mode 100644 index 0000000000..069c039879 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s5 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg new file mode 100644 index 0000000000..99778037cb --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = fast +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg new file mode 100644 index 0000000000..55faf12587 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = ultimaker_s5 +name = Annealing +version = 4 + +[metadata] +intent_category = annealing +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +infill_sparse_density = 100 +jerk_print = 30 +material_shrinkage_percentage_xy = 100.3 +material_shrinkage_percentage_z = 102.0 +speed_infill = =speed_print +speed_layer_0 = 20 +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_enable = True +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..ec3ae4c8ac --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 22 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/qml/Menus/ContextMenu.qml b/resources/qml/Menus/ContextMenu.qml index 65f3409c8a..f7029939cd 100644 --- a/resources/qml/Menus/ContextMenu.qml +++ b/resources/qml/Menus/ContextMenu.qml @@ -44,8 +44,19 @@ Cura.Menu onTriggered: CuraActions.setExtruderForSelection(model.id) shortcut: "Ctrl+" + (model.index + 1) } - // Add it to the fifth position (and above) as we want it to be added after the extruder header. - onObjectAdded: function(index, object) { base.insertItem(index + 5, object) } + + onObjectAdded: function(index, object) { + var extruder_header_location = 5; + // Find the location of the extruder header and insert it below that. + for (var i = 0; i < base.count; i++) + { + if(base.itemAt(i) === extruderHeader) + { + extruder_header_location = i + 1; + } + } + base.insertItem(extruder_header_location + index, object) + } onObjectRemoved: function(index, object) { base.removeItem(object) } } diff --git a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml index b2bdf43915..eb19e5234e 100644 --- a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2022 Ultimaker B.V. +// Copyright (c) 2023 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.15 @@ -69,6 +69,8 @@ Item const initialSection = "Ultimaker B.V."; base.currentSections.add(initialSection); updateCurrentItemUponSectionChange(initialSection); + // Trigger update on base.currentSections + base.currentSections = base.currentSections; } Row diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg index ed8b8c2704..6bc57b7a6e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg @@ -12,6 +12,5 @@ variant = AA 0.25 weight = 0 [values] -infill_overlap = =0 if infill_sparse_density > 80 else 15 speed_topbottom = =math.ceil(speed_print * 30 / 55) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg index 0a3d2060b3..3d765aaa1e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.4 ooze_shield_angle = 40 raft_airgap = 0.4 retraction_min_travel = 5 -skin_overlap = 50 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index 6e41b29ec0..3e97141c64 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -25,7 +25,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg index f3241c06a4..95d624cf99 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg @@ -13,13 +13,11 @@ weight = 0 [values] brim_width = 8 -infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = 190 retraction_hop = 0.2 -skin_overlap = 5 speed_print = 30 speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg index 3292a7a89e..90a389ea0b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg @@ -13,12 +13,10 @@ weight = 0 [values] brim_width = 8 -infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 15 -skin_overlap = 5 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =math.ceil(speed_print * 25 / 30) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index c942908d83..6d68564281 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -18,7 +18,6 @@ material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 20 prime_tower_enable = False raft_airgap = 0.15 -skin_overlap = 20 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index 5cfe667e62..a3b8129ed7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -16,7 +16,6 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 -skin_overlap = 10 support_angle = 45 support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index a2a5c55444..5c051039d0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 -skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index ef21eeca72..61073067fc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -18,7 +18,6 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 -skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index 7d8d426e50..fe501993d4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -12,7 +12,6 @@ variant = AA 0.4 weight = 1 [values] -infill_overlap = 0 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -25,7 +24,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_wall = =math.ceil(speed_print * 35 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index ae11e6d777..f9c44650c2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -12,7 +12,6 @@ variant = AA 0.4 weight = -1 [values] -infill_overlap = 0 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature + 10 @@ -23,7 +22,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 45 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index 2a426c07bd..d7b82b4a1c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -12,7 +12,6 @@ variant = AA 0.4 weight = 0 [values] -infill_overlap = 0 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -25,7 +24,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_wall = =math.ceil(speed_print * 35 / 40) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 32bf3053b0..76a248a749 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -12,7 +12,6 @@ variant = AA 0.4 weight = -2 [values] -infill_overlap = 0 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature + 10 @@ -23,7 +22,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 40 / 50) speed_wall = =math.ceil(speed_print * 50 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg index 8a3f4ab272..da5699d463 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg @@ -15,7 +15,6 @@ weight = -2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 10 retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg index 666ed67770..39f3fd8686 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg @@ -15,7 +15,6 @@ weight = 1 ooze_shield_angle = 40 raft_airgap = 0.4 retraction_prime_speed = =retraction_speed -skin_overlap = 50 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg index 71132921d6..b834ac75bb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg @@ -16,7 +16,6 @@ material_print_temperature = =default_material_print_temperature + 5 ooze_shield_angle = 40 raft_airgap = 0.4 retraction_prime_speed = =retraction_speed -skin_overlap = 50 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg index 37850c907f..ea8f7837a2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg @@ -15,7 +15,6 @@ weight = 0 ooze_shield_angle = 40 raft_airgap = 0.4 retraction_prime_speed = =retraction_speed -skin_overlap = 50 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg index 73cfcb9344..88b89d7a47 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg @@ -16,7 +16,6 @@ material_print_temperature = =default_material_print_temperature + 10 ooze_shield_angle = 40 raft_airgap = 0.4 retraction_prime_speed = =retraction_speed -skin_overlap = 50 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index 92708c8e66..046b9f6ce2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -13,8 +13,6 @@ weight = 1 [values] brim_width = 20 -infill_overlap = 0 -infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 @@ -29,7 +27,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index 2abcc4eabd..c1d488bf5f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] brim_width = 20 -infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 @@ -28,7 +27,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index 16543c9ce3..d2a3b67d4c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -13,7 +13,6 @@ weight = 0 [values] brim_width = 20 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 @@ -27,7 +26,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 5dbb058cb8..c95009797d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -13,8 +13,6 @@ weight = -2 [values] brim_width = 20 -infill_overlap = 0 -infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 @@ -29,7 +27,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg index 02b09887a6..5291946ccd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg @@ -14,7 +14,6 @@ weight = -2 [values] infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 5 -skin_overlap = 20 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index 17dc6150bc..6de3ad3edb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -18,7 +18,6 @@ material_print_temperature = =default_material_print_temperature - 5 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 10 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 35 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index 8f54cb3dd9..40b7c5b843 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -17,6 +17,5 @@ machine_nozzle_heat_up_speed = 1.6 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 10 top_bottom_thickness = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index e38e29772c..8452bce4a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -21,7 +21,6 @@ material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_wall = =math.ceil(speed_print * 55 / 70) speed_wall_0 = =math.ceil(speed_wall * 45 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index f0c2a8baa2..98990f6fe0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -25,7 +25,6 @@ material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 50 speed_wall = 50 top_bottom_thickness = 0.9 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index 94bd77bb0a..b2cbff9177 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] brim_width = 20 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index a33459c48b..309f646559 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -13,7 +13,6 @@ weight = 0 [values] brim_width = 20 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index 9c263be5fa..234ec47e8f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] brim_width = 20 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index a2d05aee51..6268da9a9f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 prime_tower_enable = False retraction_prime_speed = =retraction_speed -skin_overlap = 10 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index b9ce7d8e90..cd358539bb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 prime_tower_enable = False retraction_prime_speed = =retraction_speed -skin_overlap = 10 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index 4d221a84c4..a0d698a327 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 10 prime_tower_enable = False retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) speed_topbottom = =math.ceil(speed_print * 25 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index efdfe026c7..e9e0c2fc7f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -25,7 +25,6 @@ material_print_temperature = =default_material_print_temperature - 5 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 50 speed_wall = 50 top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index 1620a0a022..18aaeb6470 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -14,7 +14,6 @@ weight = -1 [values] brim_width = 8.75 gradual_infill_step_height = =5 * layer_height -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 @@ -32,7 +31,6 @@ retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) -skin_overlap = 5 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index 5d47c9dad1..e8e7410cd5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -14,7 +14,6 @@ weight = 0 [values] brim_width = 8.75 gradual_infill_step_height = =5 * layer_height -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 @@ -31,7 +30,6 @@ retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) -skin_overlap = 5 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 510123220d..e24ab778b5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -14,7 +14,6 @@ weight = -2 [values] brim_width = 8.75 gradual_infill_step_height = =5 * layer_height -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 @@ -32,7 +31,6 @@ retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) -skin_overlap = 5 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index 4b9d07f15c..0f2a75f458 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -20,7 +20,6 @@ material_print_temperature = =default_material_print_temperature - 10 prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False -skin_overlap = 0 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index 1b337a023e..da93a9f55e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -20,7 +20,6 @@ material_print_temperature = =default_material_print_temperature - 7 prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False -skin_overlap = 0 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index 31fda03ca0..0b6f95d853 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -20,7 +20,6 @@ material_print_temperature = =default_material_print_temperature - 5 prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False -skin_overlap = 0 speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg index e13cd65c33..0c4b15aee4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg @@ -16,7 +16,6 @@ weight = -2 brim_width = 14 material_print_temperature = =default_material_print_temperature - 5 raft_airgap = 0.5 -skin_overlap = 0 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg index 3a70102d94..c2379f198a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg @@ -16,7 +16,6 @@ weight = -3 brim_width = 14 material_print_temperature = =default_material_print_temperature - 2 raft_airgap = 0.5 -skin_overlap = 0 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg index a4df2c33b4..daef36ff1a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg @@ -15,7 +15,6 @@ weight = -4 [values] brim_width = 14 raft_airgap = 0.5 -skin_overlap = 0 speed_infill = =math.ceil(speed_print * 37 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 5eb3cf13e8..7a93e04b84 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -17,7 +17,6 @@ cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extru material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = False retraction_count_max = 5 -skin_overlap = 15 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height support_interface_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index e9a6f401a1..12dae51e46 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -17,7 +17,6 @@ cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extru material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = False retraction_count_max = 5 -skin_overlap = 20 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_interface_enable = True diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg index d6a3a45efa..e01c1dc440 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg index d67bcf1a6f..f0b6f92aaf 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg index 4394d46fea..1682bface9 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg index c707e645c8..86c138cdf7 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg index 2f6c5f737b..325316d485 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg index 6eaed0d9d3..e0ac86009e 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg index 4002975436..50552e9f6f 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg index 0202873a8f..56e1c21b9b 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg new file mode 100644 index 0000000000..839b00aa2a --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Normal +version = 4 + +[metadata] +material = generic_petcf +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -1 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..c021df62a0 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg index 13a0fdc020..cb3c769b55 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg index 35aa427ab3..1f5e04d2d0 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg index 269088cdde..a5c9456135 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg index dcd140b0d4..44e8f460aa 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg new file mode 100644 index 0000000000..30fa75bd16 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Normal +version = 4 + +[metadata] +material = generic_petcf +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -1 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..4e4c273b5c --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg new file mode 100644 index 0000000000..e3fd438910 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s3 +name = Extra Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = verydraft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -3 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg index 13309023e1..ae9144728a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg @@ -12,6 +12,5 @@ variant = AA 0.25 weight = 0 [values] -infill_overlap = =0 if infill_sparse_density > 80 else 15 speed_topbottom = =math.ceil(speed_print * 30 / 55) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg index 34519adf1b..710701b22a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.4 ooze_shield_angle = 40 raft_airgap = 0.15 retraction_min_travel = 5 -skin_overlap = 50 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index 88ef354418..f5a34415b4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -25,7 +25,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg index dfa2383209..199995e5a1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg @@ -13,13 +13,11 @@ weight = 0 [values] brim_width = 8 -infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = 190 retraction_hop = 0.2 -skin_overlap = 5 speed_print = 30 speed_wall = =math.ceil(speed_print * 25 / 30) speed_wall_0 = =math.ceil(speed_print * 20 / 30) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg index 1da66c507e..81d1d1f735 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg @@ -13,12 +13,10 @@ weight = 0 [values] brim_width = 8 -infill_overlap = =0 if infill_sparse_density > 80 else 10 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' machine_nozzle_cool_down_speed = 0.9 machine_nozzle_heat_up_speed = 1.4 material_print_temperature = =default_material_print_temperature - 15 -skin_overlap = 5 speed_print = 30 speed_topbottom = =math.ceil(speed_print * 20 / 30) speed_wall = =math.ceil(speed_print * 25 / 30) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index b67d9ce66d..337054f0de 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -18,7 +18,6 @@ material_final_print_temperature = =material_print_temperature - 20 material_print_temperature = =default_material_print_temperature + 20 prime_tower_enable = False raft_airgap = 0.15 -skin_overlap = 20 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index 19d45ae9eb..5f4c480fa4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -16,7 +16,6 @@ brim_replaces_support = False machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 -skin_overlap = 10 support_angle = 45 support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height support_infill_sparse_thickness = =2 * layer_height diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index 2ce0b0dba9..9e3c0153b1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 -skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index 55d4e22d59..bd4e13ebaf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -18,7 +18,6 @@ machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 -skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 35 / 70) speed_wall = =math.ceil(speed_print * 50 / 70) speed_wall_0 = =math.ceil(speed_wall * 35 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index bc9db7871b..e95804af3a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -12,7 +12,6 @@ variant = AA 0.4 weight = 1 [values] -infill_overlap = 0 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -25,7 +24,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_wall = =math.ceil(speed_print * 35 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index 42912d75a5..ac1e50fd49 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -12,7 +12,6 @@ variant = AA 0.4 weight = -1 [values] -infill_overlap = 0 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature + 10 @@ -23,7 +22,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 45 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index f356b8d678..77ccf92459 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -12,7 +12,6 @@ variant = AA 0.4 weight = 0 [values] -infill_overlap = 0 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 machine_nozzle_cool_down_speed = 0.85 @@ -25,7 +24,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 40 speed_topbottom = =math.ceil(speed_print * 30 / 35) speed_wall = =math.ceil(speed_print * 35 / 40) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index 06a1a739c6..dde22bbd42 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -12,7 +12,6 @@ variant = AA 0.4 weight = -2 [values] -infill_overlap = 0 infill_wipe_dist = 0 machine_min_cool_heat_time_window = 15 material_print_temperature = =default_material_print_temperature + 10 @@ -23,7 +22,6 @@ retraction_hop = 0.2 retraction_hop_enabled = False retraction_hop_only_when_collides = True retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 40 / 50) speed_wall = =math.ceil(speed_print * 50 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg index 5b52299106..af34967c61 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg @@ -15,7 +15,6 @@ weight = -2 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 10 retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg index 939a5c71a4..e243e33749 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg @@ -15,7 +15,6 @@ weight = 1 ooze_shield_angle = 40 raft_airgap = 0.4 retraction_prime_speed = =retraction_speed -skin_overlap = 50 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg index 7870694a9c..8833881fdf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg @@ -16,7 +16,6 @@ material_print_temperature = =default_material_print_temperature + 5 ooze_shield_angle = 40 raft_airgap = 0.4 retraction_prime_speed = =retraction_speed -skin_overlap = 50 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg index 3f986ccff9..70f76a5266 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg @@ -15,7 +15,6 @@ weight = 0 ooze_shield_angle = 40 raft_airgap = 0.4 retraction_prime_speed = =retraction_speed -skin_overlap = 50 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg index 73ec3ed2aa..0f7b604b15 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg @@ -16,7 +16,6 @@ material_print_temperature = =default_material_print_temperature + 10 ooze_shield_angle = 40 raft_airgap = 0.4 retraction_prime_speed = =retraction_speed -skin_overlap = 50 switch_extruder_prime_speed = 30 switch_extruder_retraction_amount = 30 switch_extruder_retraction_speeds = 40 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index 2bdf654255..c19de26c93 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -13,8 +13,6 @@ weight = 1 [values] brim_width = 20 -infill_overlap = 0 -infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 @@ -29,7 +27,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index 4b8ddee928..b21da5f2e4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] brim_width = 20 -infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 @@ -28,7 +27,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index cc1afda669..c99934288e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -13,7 +13,6 @@ weight = 0 [values] brim_width = 20 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 @@ -27,7 +26,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index 23a833acb3..7eedf33df9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -13,8 +13,6 @@ weight = -2 [values] brim_width = 20 -infill_overlap = 0 -infill_overlap_mm = =0 if infill_sparse_density > 80 else 0.05 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 @@ -29,7 +27,6 @@ raft_airgap = 0.25 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = 0.8 -skin_overlap = 30 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg index ec632de70c..6b7f2fba1a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg @@ -14,7 +14,6 @@ weight = -2 [values] infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' material_print_temperature = =default_material_print_temperature + 5 -skin_overlap = 20 speed_infill = =math.ceil(speed_print * 50 / 60) speed_print = 60 speed_topbottom = =math.ceil(speed_print * 35 / 60) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index dbac302efb..5facf88970 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -18,7 +18,6 @@ material_print_temperature = =default_material_print_temperature - 5 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 10 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 35 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index 3f759c42f5..b05f4fdd62 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -17,6 +17,5 @@ machine_nozzle_heat_up_speed = 1.6 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 10 top_bottom_thickness = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index 5e9f94a628..aea145b1f9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -21,7 +21,6 @@ material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_topbottom = =math.ceil(speed_print * 40 / 70) speed_wall = =math.ceil(speed_print * 55 / 70) speed_wall_0 = =math.ceil(speed_wall * 45 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index 59657e8460..31d2b31017 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -25,7 +25,6 @@ material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 50 speed_wall = 50 top_bottom_thickness = 0.9 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 55b045bab8..318a14834f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] brim_width = 20 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index 10b2635220..1527a11fd0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -13,7 +13,6 @@ weight = 0 [values] brim_width = 20 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index 1a2af02756..356fa2d4cb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] brim_width = 20 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' infill_wipe_dist = 0.1 machine_min_cool_heat_time_window = 15 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index 0d30e70a41..5f63f533f7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 prime_tower_enable = False retraction_prime_speed = =retraction_speed -skin_overlap = 10 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index 65b351b697..977232f4d4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 15 prime_tower_enable = False retraction_prime_speed = =retraction_speed -skin_overlap = 10 speed_print = 45 speed_topbottom = =math.ceil(speed_print * 35 / 45) speed_wall = =math.ceil(speed_print * 40 / 45) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index 9b4622c007..8e904a41a5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -17,7 +17,6 @@ machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature - 10 prime_tower_enable = False retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 50 speed_roofing = =math.ceil(speed_wall * 20 / 24) speed_topbottom = =math.ceil(speed_print * 25 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index ecc37d84b7..0ac60ad5a2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -25,7 +25,6 @@ material_print_temperature = =default_material_print_temperature - 5 prime_tower_enable = False raft_airgap = 0.25 retraction_prime_speed = =retraction_speed -skin_overlap = 20 speed_print = 50 speed_wall = 50 top_bottom_thickness = 1.2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index 3d02e2be54..b641bdbe13 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -14,7 +14,6 @@ weight = -1 [values] brim_width = 8.75 gradual_infill_step_height = =5 * layer_height -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 @@ -32,7 +31,6 @@ retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) -skin_overlap = 5 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index 9953016492..9a4f7c61fd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -14,7 +14,6 @@ weight = 0 [values] brim_width = 8.75 gradual_infill_step_height = =5 * layer_height -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 @@ -31,7 +30,6 @@ retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) -skin_overlap = 5 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index 097a0a2c16..3461b45736 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -14,7 +14,6 @@ weight = -2 [values] brim_width = 8.75 gradual_infill_step_height = =5 * layer_height -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' infill_sparse_density = 10 infill_wipe_dist = 0.1 @@ -32,7 +31,6 @@ retraction_extra_prime_amount = 0.8 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 skin_line_width = =round(line_width / 0.8, 2) -skin_overlap = 5 speed_print = 25 speed_topbottom = =math.ceil(speed_print * 0.8) speed_wall = =math.ceil(speed_print * 25 / 25) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index 197d372c69..abdf9b4fb0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -20,7 +20,6 @@ material_print_temperature = =default_material_print_temperature - 10 prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False -skin_overlap = 0 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index b3b1ea670a..f594dc8d1a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -20,7 +20,6 @@ material_print_temperature = =default_material_print_temperature - 7 prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False -skin_overlap = 0 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index faaea1b543..a6eb5748b8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -20,7 +20,6 @@ material_print_temperature = =default_material_print_temperature - 5 prime_tower_enable = True retraction_hop = 0.1 retraction_hop_enabled = False -skin_overlap = 0 speed_infill = =math.ceil(speed_print * 40 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 35 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg index 5e04033239..e20850c5b4 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg @@ -16,7 +16,6 @@ weight = -2 brim_width = 14 material_print_temperature = =default_material_print_temperature - 5 raft_airgap = 0.5 -skin_overlap = 0 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg index 380418c4cd..26965dee30 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg @@ -16,7 +16,6 @@ weight = -3 brim_width = 14 material_print_temperature = =default_material_print_temperature - 2 raft_airgap = 0.5 -skin_overlap = 0 speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) speed_wall = =math.ceil(speed_print * 40 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg index 841bb44d8e..38cade0bd5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg @@ -15,7 +15,6 @@ weight = -4 [values] brim_width = 14 raft_airgap = 0.5 -skin_overlap = 0 speed_infill = =math.ceil(speed_print * 37 / 50) speed_print = 50 speed_topbottom = =math.ceil(speed_print * 25 / 50) diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index 5ff32ba5fd..7097e1845a 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -17,7 +17,6 @@ cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extru material_print_temperature = =default_material_print_temperature + 5 prime_tower_enable = False retraction_count_max = 5 -skin_overlap = 15 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_infill_sparse_thickness = =2 * layer_height support_interface_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index 922b3f0ac4..16469a1fdf 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -17,7 +17,6 @@ cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extru material_print_temperature = =default_material_print_temperature + 10 prime_tower_enable = False retraction_count_max = 5 -skin_overlap = 20 skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) support_interface_enable = True diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg index d94e98c98f..ad3cf1ef5b 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg index cf0d6c974d..269b4253b6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg index 3aea9462da..4cb3760edf 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg index 341a63af89..12d6563333 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg index efa0f8a06c..94ca68f5a3 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg index 22e92179d5..d6d46eb402 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg index 8e406fdbbe..547106628d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg @@ -13,7 +13,6 @@ weight = -1 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg index 3c38ad0605..e67d109b33 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg new file mode 100644 index 0000000000..f8cf34dfaf --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Normal +version = 4 + +[metadata] +material = generic_petcf +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -1 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..315e57947f --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 25 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 0.8 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg index a099c92675..9fe6dca546 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg index e77ace096d..533a6414e1 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg index 78e515f592..b9cea93f9a 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg index 52f3737f11..44ea4a26db 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg @@ -13,7 +13,6 @@ weight = -2 [values] material_print_temperature = =default_material_print_temperature -skin_overlap = 20 support_bottom_distance = =support_z_distance / 2 support_top_distance = =support_z_distance support_z_distance = =layer_height * 2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg new file mode 100644 index 0000000000..3e8d8fcf23 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Normal +version = 4 + +[metadata] +material = generic_petcf +quality_type = fast +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -1 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..7fbd36d296 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg new file mode 100644 index 0000000000..30aea77686 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s5 +name = Extra Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = verydraft +setting_version = 22 +type = quality +variant = CC 0.6 +weight = -3 + +[values] +infill_overlap = =0 if infill_sparse_density > 80 else 10 +raft_airgap = =layer_height * 2 +skin_overlap = 20 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance / 2 +support_z_distance = =layer_height * 2 +top_bottom_thickness = 1.2 + diff --git a/resources/themes/cura-light/icons/default/Anneal.svg b/resources/themes/cura-light/icons/default/Anneal.svg new file mode 100644 index 0000000000..613d2de2b6 --- /dev/null +++ b/resources/themes/cura-light/icons/default/Anneal.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/resources/themes/cura-light/images/logo.svg b/resources/themes/cura-light/images/logo.svg index 63449bb296..b2ee9b871d 100644 --- a/resources/themes/cura-light/images/logo.svg +++ b/resources/themes/cura-light/images/logo.svg @@ -1,20 +1,5 @@ - - - - - - - - - - - - - - - - - - - + + + + diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index ad32573288..8f3f9076c5 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -542,7 +542,7 @@ "default_lining": [0.08, 0.08], "default_arrow": [0.8, 0.8], - "logo": [16, 3.5], + "logo": [16, 2], "wide_margin": [2.0, 2.0], "thick_margin": [1.71, 1.43], diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index 40febf632f..4190aab0cd 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -12,7 +12,6 @@ type = variant brim_width = 7 cool_fan_speed = 7 default_material_print_temperature = 200 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 6dedea2336..0067e86bd9 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -16,7 +16,6 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) brim_width = 3 cool_fan_speed = 50 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 @@ -39,7 +38,6 @@ skin_overlap = 5 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index 50f49d8623..b3ba87ac59 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -19,7 +19,6 @@ machine_nozzle_tip_outer_diameter = 1.0 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index 6797523969..941634e3a6 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -12,7 +12,6 @@ type = variant brim_width = 7 cool_fan_speed = 7 default_material_print_temperature = 200 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 319f101377..1ca125b2ef 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -16,7 +16,6 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) brim_width = 3 cool_fan_speed = 50 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 @@ -39,7 +38,6 @@ skin_overlap = 5 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 12d45c483b..1fa6241d20 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -19,7 +19,6 @@ machine_nozzle_tip_outer_diameter = 1.0 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index b281fdac70..1f3baa432f 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -18,7 +18,6 @@ machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed -skin_overlap = 15 speed_print = 55 speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index 9cf7222b15..c30365897b 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -12,7 +12,6 @@ type = variant brim_width = 7 cool_fan_speed = 7 default_material_print_temperature = 200 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 @@ -32,7 +31,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_speed = 25 -skin_overlap = 5 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index ebce89e58d..b3f76758f4 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -15,7 +15,6 @@ machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 retraction_min_travel = =line_width * 2 -skin_overlap = 15 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index 6ea5b34559..4e749009ea 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -15,7 +15,6 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) brim_width = 3 cool_fan_speed = 50 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 @@ -33,11 +32,9 @@ raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 -skin_overlap = 5 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 54df4e4ac9..e50241aa3a 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -19,7 +19,6 @@ machine_nozzle_tip_outer_diameter = 1.0 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index cbe7f53dfa..519b21c920 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -18,7 +18,6 @@ machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed -skin_overlap = 15 speed_print = 55 speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index a54f735c2e..b482c418f0 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -12,7 +12,6 @@ type = variant brim_width = 7 cool_fan_speed = 7 default_material_print_temperature = 200 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 @@ -32,7 +31,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_speed = 25 -skin_overlap = 5 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index 1f24459530..09f528162d 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -15,7 +15,6 @@ machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 retraction_min_travel = =line_width * 2 -skin_overlap = 15 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 98fb4da612..1484241e9d 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -15,7 +15,6 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) brim_width = 3 cool_fan_speed = 50 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 @@ -33,11 +32,9 @@ raft_surface_layers = 1 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 -skin_overlap = 5 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 55b556777c..2058185bb8 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -19,7 +19,6 @@ machine_nozzle_tip_outer_diameter = 1.0 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2 diff --git a/resources/variants/ultimaker_s7_aa0.25.inst.cfg b/resources/variants/ultimaker_s7_aa0.25.inst.cfg index 1e9b4d157d..1495af6c48 100644 --- a/resources/variants/ultimaker_s7_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.25.inst.cfg @@ -18,7 +18,6 @@ machine_nozzle_size = 0.25 machine_nozzle_tip_outer_diameter = 0.65 retraction_min_travel = 0.7 retraction_prime_speed = =retraction_speed -skin_overlap = 15 speed_print = 55 speed_topbottom = 20 speed_wall = =math.ceil(speed_print * 30 / 55) diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index 683833cb38..a5b6a66516 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -12,7 +12,6 @@ type = variant brim_width = 7 cool_fan_speed = 7 default_material_print_temperature = 200 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 @@ -32,7 +31,6 @@ retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 2 retraction_speed = 25 -skin_overlap = 5 speed_print = 35 speed_topbottom = =math.ceil(speed_print * 25 / 35) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) diff --git a/resources/variants/ultimaker_s7_aa04.inst.cfg b/resources/variants/ultimaker_s7_aa04.inst.cfg index 57f9d105fe..a9079c975e 100644 --- a/resources/variants/ultimaker_s7_aa04.inst.cfg +++ b/resources/variants/ultimaker_s7_aa04.inst.cfg @@ -15,7 +15,6 @@ machine_nozzle_id = AA 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 retraction_min_travel = =line_width * 2 -skin_overlap = 15 speed_print = 70 speed_topbottom = =math.ceil(speed_print * 30 / 70) speed_wall = =math.ceil(speed_print * 30 / 70) diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index b4867b1178..95bcaef78f 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -15,7 +15,6 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) brim_width = 3 cool_fan_speed = 50 -infill_overlap = 0 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_wipe_dist = 0 jerk_print = 25 @@ -34,11 +33,9 @@ retraction_amount = 4.5 retraction_hop = 2 retraction_hop_only_when_collides = True retraction_min_travel = =line_width * 3 -skin_overlap = 5 speed_prime_tower = =math.ceil(speed_print * 7 / 35) speed_print = 35 speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_angle = 60 diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg index 00bd9edf77..bead299de3 100644 --- a/resources/variants/ultimaker_s7_bb04.inst.cfg +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -20,7 +20,6 @@ retraction_amount = 4.5 retraction_min_travel = =3 * line_width speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) -speed_support_bottom = =math.ceil(speed_support_interface * 10 / 20) speed_support_interface = =math.ceil(speed_support * 20 / 25) speed_wall_0 = =math.ceil(speed_wall * 25 / 30) support_bottom_height = =layer_height * 2