diff --git a/conanfile.py b/conanfile.py
index e99a61a4de..4e973dce00 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -48,7 +48,7 @@ class CuraConan(ConanFile):
def set_version(self):
if not self.version:
- self.version = "5.5.0-beta.1"
+ self.version = "5.6.0-alpha"
@property
def _pycharm_targets(self):
@@ -305,7 +305,7 @@ class CuraConan(ConanFile):
def requirements(self):
self.requires("boost/1.82.0")
- self.requires("curaengine_grpc_definitions/latest@ultimaker/testing")
+ self.requires("curaengine_grpc_definitions/(latest)@ultimaker/testing")
self.requires("zlib/1.2.13")
self.requires("pyarcus/5.3.0")
self.requires("curaengine/(latest)@ultimaker/testing")
diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py
index a6a60318fc..96cfa6c64d 100644
--- a/cura/ApplicationMetadata.py
+++ b/cura/ApplicationMetadata.py
@@ -14,7 +14,7 @@ DEFAULT_CURA_LATEST_URL = "https://software.ultimaker.com/latest.json"
# Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for
# example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the
# CuraVersion.py.in template.
-CuraSDKVersion = "8.4.0"
+CuraSDKVersion = "8.5.0"
try:
from cura.CuraVersion import CuraLatestURL
diff --git a/cura/Arranging/Arranger.py b/cura/Arranging/Arranger.py
index f7f9870cf9..fd93ab1846 100644
--- a/cura/Arranging/Arranger.py
+++ b/cura/Arranging/Arranger.py
@@ -5,7 +5,7 @@ if TYPE_CHECKING:
class Arranger:
- def createGroupOperationForArrange(self, *, add_new_nodes_in_scene: bool = False) -> Tuple["GroupedOperation", int]:
+ def createGroupOperationForArrange(self, add_new_nodes_in_scene: bool = False) -> Tuple["GroupedOperation", int]:
"""
Find placement for a set of scene nodes, but don't actually move them just yet.
:param add_new_nodes_in_scene: Whether to create new scene nodes before applying the transformations and rotations
@@ -16,13 +16,12 @@ class Arranger:
"""
raise NotImplementedError
- def arrange(self, *, add_new_nodes_in_scene: bool = False) -> bool:
+ def arrange(self, add_new_nodes_in_scene: bool = False) -> bool:
"""
Find placement for a set of scene nodes, and move them by using a single grouped operation.
:param add_new_nodes_in_scene: Whether to create new scene nodes before applying the transformations and rotations
:return: found_solution_for_all: Whether the algorithm found a place on the buildplate for all the objects
"""
- grouped_operation, not_fit_count = self.createGroupOperationForArrange(
- add_new_nodes_in_scene=add_new_nodes_in_scene)
+ grouped_operation, not_fit_count = self.createGroupOperationForArrange(add_new_nodes_in_scene)
grouped_operation.push()
return not_fit_count == 0
diff --git a/cura/Arranging/GridArrange.py b/cura/Arranging/GridArrange.py
index 4caf472b5d..89146be9ad 100644
--- a/cura/Arranging/GridArrange.py
+++ b/cura/Arranging/GridArrange.py
@@ -80,7 +80,7 @@ class GridArrange(Arranger):
self._allowed_grid_idx = self._build_plate_grid_ids.difference(self._fixed_nodes_grid_ids)
- def createGroupOperationForArrange(self, *, add_new_nodes_in_scene: bool = False) -> Tuple[GroupedOperation, int]:
+ def createGroupOperationForArrange(self, add_new_nodes_in_scene: bool = False) -> Tuple[GroupedOperation, int]:
# Find the sequence in which items are placed
coord_build_plate_center_x = self._build_volume_bounding_box.width * 0.5 + self._build_volume_bounding_box.left
coord_build_plate_center_y = self._build_volume_bounding_box.depth * 0.5 + self._build_volume_bounding_box.back
diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py
index 5fcd36c1a3..68ab5f75da 100644
--- a/cura/Arranging/Nest2DArrange.py
+++ b/cura/Arranging/Nest2DArrange.py
@@ -6,6 +6,7 @@ from pynest2d import Point, Box, Item, NfpConfig, nest
from typing import List, TYPE_CHECKING, Optional, Tuple
from UM.Application import Application
+from UM.Decorators import deprecated
from UM.Logger import Logger
from UM.Math.Matrix import Matrix
from UM.Math.Polygon import Polygon
@@ -124,7 +125,7 @@ class Nest2DArrange(Arranger):
return found_solution_for_all, node_items
- def createGroupOperationForArrange(self, *, add_new_nodes_in_scene: bool = False) -> Tuple[GroupedOperation, int]:
+ def createGroupOperationForArrange(self, add_new_nodes_in_scene: bool = False) -> Tuple[GroupedOperation, int]:
scene_root = Application.getInstance().getController().getScene().getRoot()
found_solution_for_all, node_items = self.findNodePlacement()
@@ -149,3 +150,30 @@ class Nest2DArrange(Arranger):
not_fit_count += 1
return grouped_operation, not_fit_count
+
+
+@deprecated("Use the Nest2DArrange class instead")
+def findNodePlacement(nodes_to_arrange: List["SceneNode"], build_volume: "BuildVolume",
+ fixed_nodes: Optional[List["SceneNode"]] = None, factor=10000) -> Tuple[bool, List[Item]]:
+ arranger = Nest2DArrange(nodes_to_arrange, build_volume, fixed_nodes, factor=factor)
+ return arranger.findNodePlacement()
+
+
+@deprecated("Use the Nest2DArrange class instead")
+def createGroupOperationForArrange(nodes_to_arrange: List["SceneNode"],
+ build_volume: "BuildVolume",
+ fixed_nodes: Optional[List["SceneNode"]] = None,
+ factor=10000,
+ add_new_nodes_in_scene: bool = False) -> Tuple[GroupedOperation, int]:
+ arranger = Nest2DArrange(nodes_to_arrange, build_volume, fixed_nodes, factor=factor)
+ return arranger.createGroupOperationForArrange(add_new_nodes_in_scene=add_new_nodes_in_scene)
+
+
+@deprecated("Use the Nest2DArrange class instead")
+def arrange(nodes_to_arrange: List["SceneNode"],
+ build_volume: "BuildVolume",
+ fixed_nodes: Optional[List["SceneNode"]] = None,
+ factor=10000,
+ add_new_nodes_in_scene: bool = False) -> bool:
+ arranger = Nest2DArrange(nodes_to_arrange, build_volume, fixed_nodes, factor=factor)
+ return arranger.arrange(add_new_nodes_in_scene=add_new_nodes_in_scene)
diff --git a/cura/Machines/Models/IntentCategoryModel.py b/cura/Machines/Models/IntentCategoryModel.py
index 4f32a84a97..e9b94d4233 100644
--- a/cura/Machines/Models/IntentCategoryModel.py
+++ b/cura/Machines/Models/IntentCategoryModel.py
@@ -39,7 +39,9 @@ class IntentCategoryModel(ListModel):
"""
if len(cls._translations) == 0:
cls._translations["default"] = {
- "name": catalog.i18nc("@label", "Default")
+ "name": catalog.i18nc("@label", "Balanced"),
+ "description": catalog.i18nc("@text",
+ "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy.")
}
cls._translations["visual"] = {
"name": catalog.i18nc("@label", "Visual"),
diff --git a/cura/Machines/Models/IntentTranslations.py b/cura/Machines/Models/IntentTranslations.py
index 050fb1de56..43fe771d67 100644
--- a/cura/Machines/Models/IntentTranslations.py
+++ b/cura/Machines/Models/IntentTranslations.py
@@ -8,7 +8,9 @@ catalog = i18nCatalog("cura")
intent_translations = collections.OrderedDict() # type: collections.OrderedDict[str, Dict[str, Optional[str]]]
intent_translations["default"] = {
- "name": catalog.i18nc("@label", "Default")
+ "name": catalog.i18nc("@label", "Balanced"),
+ "description": catalog.i18nc("@text",
+ "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy.")
}
intent_translations["visual"] = {
"name": catalog.i18nc("@label", "Visual"),
diff --git a/cura/Machines/Models/QualityManagementModel.py b/cura/Machines/Models/QualityManagementModel.py
index 3c3bc9a6e9..86e35f6b28 100644
--- a/cura/Machines/Models/QualityManagementModel.py
+++ b/cura/Machines/Models/QualityManagementModel.py
@@ -344,7 +344,7 @@ class QualityManagementModel(ListModel):
"quality_type": quality_group.quality_type,
"quality_changes_group": None,
"intent_category": "default",
- "section_name": catalog.i18nc("@label", "Default"),
+ "section_name": catalog.i18nc("@label", "Balanced"),
"layer_height": layer_height, # layer_height is only used for sorting
}
item_list.append(item)
diff --git a/cura/Settings/CuraFormulaFunctions.py b/cura/Settings/CuraFormulaFunctions.py
index d7b6228e09..93a4de28ec 100644
--- a/cura/Settings/CuraFormulaFunctions.py
+++ b/cura/Settings/CuraFormulaFunctions.py
@@ -56,6 +56,9 @@ class CuraFormulaFunctions:
if isinstance(value, SettingFunction):
value = value(extruder_stack, context = context)
+ if isinstance(value, str):
+ value = value.lower()
+
return value
def _getActiveExtruders(self, context: Optional["PropertyEvaluationContext"] = None) -> List[str]:
diff --git a/cura/UI/ObjectsModel.py b/cura/UI/ObjectsModel.py
index 884d516f08..4f64270247 100644
--- a/cura/UI/ObjectsModel.py
+++ b/cura/UI/ObjectsModel.py
@@ -69,7 +69,7 @@ class ObjectsModel(ListModel):
self._group_name_template = catalog.i18nc("@label", "Group #{group_nr}")
self._group_name_prefix = self._group_name_template.split("#")[0]
- self._naming_regex = re.compile("^(.+)\(([0-9]+)\)$")
+ self._naming_regex = re.compile(r"^(.+)\(([0-9]+)\)$")
def setActiveBuildPlate(self, nr: int) -> None:
if self._build_plate_number != nr:
diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json
index 14eb8c72f6..b9667eea13 100644
--- a/resources/bundled_packages/cura.json
+++ b/resources/bundled_packages/cura.json
@@ -6,7 +6,7 @@
"display_name": "3MF Reader",
"description": "Provides support for reading 3MF files.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -23,7 +23,7 @@
"display_name": "3MF Writer",
"description": "Provides support for writing 3MF files.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -40,7 +40,7 @@
"display_name": "AMF Reader",
"description": "Provides support for reading AMF files.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "fieldOfView",
@@ -57,7 +57,7 @@
"display_name": "Cura Backups",
"description": "Backup and restore your configuration.",
"package_version": "1.2.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -74,7 +74,7 @@
"display_name": "CuraEngine Backend",
"description": "Provides the link to the CuraEngine slicing backend.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -91,7 +91,7 @@
"display_name": "Cura Profile Reader",
"description": "Provides support for importing Cura profiles.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -108,7 +108,7 @@
"display_name": "Cura Profile Writer",
"description": "Provides support for exporting Cura profiles.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -125,7 +125,7 @@
"display_name": "Ultimaker Digital Library",
"description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.",
"package_version": "1.1.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -142,7 +142,7 @@
"display_name": "Firmware Update Checker",
"description": "Checks for firmware updates.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -159,7 +159,7 @@
"display_name": "Firmware Updater",
"description": "Provides a machine actions for updating firmware.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -176,7 +176,7 @@
"display_name": "Compressed G-code Reader",
"description": "Reads g-code from a compressed archive.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -193,7 +193,7 @@
"display_name": "Compressed G-code Writer",
"description": "Writes g-code to a compressed archive.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -210,7 +210,7 @@
"display_name": "G-Code Profile Reader",
"description": "Provides support for importing profiles from g-code files.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -227,7 +227,7 @@
"display_name": "G-Code Reader",
"description": "Allows loading and displaying G-code files.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "VictorLarchenko",
@@ -244,7 +244,7 @@
"display_name": "G-Code Writer",
"description": "Writes g-code to a file.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -261,7 +261,7 @@
"display_name": "Image Reader",
"description": "Enables ability to generate printable geometry from 2D image files.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -278,7 +278,7 @@
"display_name": "Legacy Cura Profile Reader",
"description": "Provides support for importing profiles from legacy Cura versions.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -295,7 +295,7 @@
"display_name": "Machine Settings Action",
"description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "fieldOfView",
@@ -312,7 +312,7 @@
"display_name": "Model Checker",
"description": "Checks models and print configuration for possible printing issues and give suggestions.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -329,7 +329,7 @@
"display_name": "Monitor Stage",
"description": "Provides a monitor stage in Cura.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -346,7 +346,7 @@
"display_name": "Per-Object Settings Tool",
"description": "Provides the per-model settings.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -363,7 +363,7 @@
"display_name": "Post Processing",
"description": "Extension that allows for user created scripts for post processing.",
"package_version": "2.2.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -380,7 +380,7 @@
"display_name": "Prepare Stage",
"description": "Provides a prepare stage in Cura.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -397,7 +397,7 @@
"display_name": "Preview Stage",
"description": "Provides a preview stage in Cura.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -414,7 +414,7 @@
"display_name": "Removable Drive Output Device",
"description": "Provides removable drive hotplugging and writing support.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -431,7 +431,7 @@
"display_name": "Sentry Logger",
"description": "Logs certain events so that they can be used by the crash reporter",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -448,7 +448,7 @@
"display_name": "Simulation View",
"description": "Provides the Simulation view.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -465,7 +465,7 @@
"display_name": "Slice Info",
"description": "Submits anonymous slice info. Can be disabled through preferences.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -482,7 +482,7 @@
"display_name": "Solid View",
"description": "Provides a normal solid mesh view.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -499,7 +499,7 @@
"display_name": "Support Eraser Tool",
"description": "Creates an eraser mesh to block the printing of support in certain places.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -516,7 +516,7 @@
"display_name": "Trimesh Reader",
"description": "Provides support for reading model files.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -533,7 +533,7 @@
"display_name": "Marketplace",
"description": "Find, manage and install new Cura packages.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -550,7 +550,7 @@
"display_name": "UFP Reader",
"description": "Provides support for reading Ultimaker Format Packages.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -567,7 +567,7 @@
"display_name": "UFP Writer",
"description": "Provides support for writing Ultimaker Format Packages.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -584,7 +584,7 @@
"display_name": "Ultimaker Machine Actions",
"description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -601,7 +601,7 @@
"display_name": "UM3 Network Printing",
"description": "Manages network connections to Ultimaker 3 printers.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -618,7 +618,7 @@
"display_name": "USB Printing",
"description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.",
"package_version": "1.0.2",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -635,7 +635,7 @@
"display_name": "Version Upgrade 2.1 to 2.2",
"description": "Upgrades configurations from Cura 2.1 to Cura 2.2.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -652,7 +652,7 @@
"display_name": "Version Upgrade 2.2 to 2.4",
"description": "Upgrades configurations from Cura 2.2 to Cura 2.4.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -669,7 +669,7 @@
"display_name": "Version Upgrade 2.5 to 2.6",
"description": "Upgrades configurations from Cura 2.5 to Cura 2.6.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -686,7 +686,7 @@
"display_name": "Version Upgrade 2.6 to 2.7",
"description": "Upgrades configurations from Cura 2.6 to Cura 2.7.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -703,7 +703,7 @@
"display_name": "Version Upgrade 2.7 to 3.0",
"description": "Upgrades configurations from Cura 2.7 to Cura 3.0.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -720,7 +720,7 @@
"display_name": "Version Upgrade 3.0 to 3.1",
"description": "Upgrades configurations from Cura 3.0 to Cura 3.1.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -737,7 +737,7 @@
"display_name": "Version Upgrade 3.2 to 3.3",
"description": "Upgrades configurations from Cura 3.2 to Cura 3.3.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -754,7 +754,7 @@
"display_name": "Version Upgrade 3.3 to 3.4",
"description": "Upgrades configurations from Cura 3.3 to Cura 3.4.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -771,7 +771,7 @@
"display_name": "Version Upgrade 3.4 to 3.5",
"description": "Upgrades configurations from Cura 3.4 to Cura 3.5.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -788,7 +788,7 @@
"display_name": "Version Upgrade 3.5 to 4.0",
"description": "Upgrades configurations from Cura 3.5 to Cura 4.0.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -805,7 +805,7 @@
"display_name": "Version Upgrade 4.0 to 4.1",
"description": "Upgrades configurations from Cura 4.0 to Cura 4.1.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -822,7 +822,7 @@
"display_name": "Version Upgrade 4.1 to 4.2",
"description": "Upgrades configurations from Cura 4.1 to Cura 4.2.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -839,7 +839,7 @@
"display_name": "Version Upgrade 4.2 to 4.3",
"description": "Upgrades configurations from Cura 4.2 to Cura 4.3.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -856,7 +856,7 @@
"display_name": "Version Upgrade 4.3 to 4.4",
"description": "Upgrades configurations from Cura 4.3 to Cura 4.4.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -873,7 +873,7 @@
"display_name": "Version Upgrade 4.4 to 4.5",
"description": "Upgrades configurations from Cura 4.4 to Cura 4.5.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -890,7 +890,7 @@
"display_name": "Version Upgrade 4.5 to 4.6",
"description": "Upgrades configurations from Cura 4.5 to Cura 4.6.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -907,7 +907,7 @@
"display_name": "Version Upgrade 4.6.0 to 4.6.2",
"description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -924,7 +924,7 @@
"display_name": "Version Upgrade 4.6.2 to 4.7",
"description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -941,7 +941,7 @@
"display_name": "Version Upgrade 4.7.0 to 4.8.0",
"description": "Upgrades configurations from Cura 4.7.0 to Cura 4.8.0",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -958,7 +958,7 @@
"display_name": "Version Upgrade 4.8.0 to 4.9.0",
"description": "Upgrades configurations from Cura 4.8.0 to Cura 4.9.0",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -975,7 +975,7 @@
"display_name": "Version Upgrade 4.9 to 4.10",
"description": "Upgrades configurations from Cura 4.9 to Cura 4.10",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -992,7 +992,7 @@
"display_name": "Version Upgrade 4.11 to 4.12",
"description": "Upgrades configurations from Cura 4.11 to Cura 4.12",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"sdk_version_semver": "7.7.0",
"website": "https://ultimaker.com",
"author": {
@@ -1010,7 +1010,7 @@
"display_name": "Version Upgrade 4.13 to 5.0",
"description": "Upgrades configurations from Cura 4.13 to Cura 5.0",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -1027,7 +1027,7 @@
"display_name": "Version Upgrade 5.2 to 5.3",
"description": "Upgrades configurations from Cura 5.2 to Cura 5.3",
"package_version": "1.0.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -1044,7 +1044,7 @@
"display_name": "X3D Reader",
"description": "Provides support for reading X3D files.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "SevaAlekseyev",
@@ -1061,7 +1061,7 @@
"display_name": "XML Material Profiles",
"description": "Provides capabilities to read and write XML-based material profiles.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -1078,7 +1078,7 @@
"display_name": "X-Ray View",
"description": "Provides the X-Ray view.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -1095,7 +1095,7 @@
"display_name": "Generic ABS",
"description": "The generic ABS profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1113,7 +1113,7 @@
"display_name": "Generic BAM",
"description": "The generic BAM profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1131,7 +1131,7 @@
"display_name": "Generic CFF CPE",
"description": "The generic CFF CPE profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1149,7 +1149,7 @@
"display_name": "Generic CFF PA",
"description": "The generic CFF PA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1167,7 +1167,7 @@
"display_name": "Generic CPE",
"description": "The generic CPE profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1185,7 +1185,7 @@
"display_name": "Generic CPE+",
"description": "The generic CPE+ profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1203,7 +1203,7 @@
"display_name": "Generic GFF CPE",
"description": "The generic GFF CPE profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1221,7 +1221,7 @@
"display_name": "Generic GFF PA",
"description": "The generic GFF PA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1239,7 +1239,7 @@
"display_name": "Generic HIPS",
"description": "The generic HIPS profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1257,7 +1257,7 @@
"display_name": "Generic Nylon",
"description": "The generic Nylon profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1275,7 +1275,7 @@
"display_name": "Generic PC",
"description": "The generic PC profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1293,7 +1293,7 @@
"display_name": "Generic PETG",
"description": "The generic PETG profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1311,7 +1311,7 @@
"display_name": "Generic PLA",
"description": "The generic PLA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1329,7 +1329,7 @@
"display_name": "Generic PP",
"description": "The generic PP profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1347,7 +1347,7 @@
"display_name": "Generic PVA",
"description": "The generic PVA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1365,7 +1365,7 @@
"display_name": "Generic Tough PLA",
"description": "The generic Tough PLA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1383,7 +1383,7 @@
"display_name": "Generic TPU",
"description": "The generic TPU profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1401,7 +1401,7 @@
"display_name": "Dagoma Chromatik PLA",
"description": "Filament testé et approuvé pour les imprimantes 3D Dagoma. Chromatik est l'idéal pour débuter et suivre les tutoriels premiers pas. Il vous offre qualité et résistance pour chacune de vos impressions.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://dagoma.fr/boutique/filaments.html",
"author": {
"author_id": "Dagoma",
@@ -1418,7 +1418,7 @@
"display_name": "FABtotum ABS",
"description": "This material is easy to be extruded but it is not the simplest to use. It is one of the most used in 3D printing to get very well finished objects. It is not sustainable and its smoke can be dangerous if inhaled. The reason to prefer this filament to PLA is mainly because of its precision and mechanical specs. ABS (for plastic) stands for Acrylonitrile Butadiene Styrene and it is a thermoplastic which is widely used in everyday objects. It can be printed with any FFF 3D printer which can get to high temperatures as it must be extruded in a range between 220° and 245°, so it’s compatible with all versions of the FABtotum Personal fabricator.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40",
"author": {
"author_id": "FABtotum",
@@ -1435,7 +1435,7 @@
"display_name": "FABtotum Nylon",
"description": "When 3D printing started this material was not listed among the extrudable filaments. It is flexible as well as resistant to tractions. It is well known for its uses in textile but also in industries which require a strong and flexible material. There are different kinds of Nylon: 3D printing mostly uses Nylon 6 and Nylon 6.6, which are the most common. It requires higher temperatures to be printed, so a 3D printer must be able to reach them (around 240°C): the FABtotum, of course, can.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53",
"author": {
"author_id": "FABtotum",
@@ -1452,7 +1452,7 @@
"display_name": "FABtotum PLA",
"description": "It is the most common filament used for 3D printing. It is studied to be bio-degradable as it comes from corn starch’s sugar mainly. It is completely made of renewable sources and has no footprint on polluting. PLA stands for PolyLactic Acid and it is a thermoplastic that today is still considered the easiest material to be 3D printed. It can be extruded at lower temperatures: the standard range of FABtotum’s one is between 185° and 195°.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39",
"author": {
"author_id": "FABtotum",
@@ -1469,7 +1469,7 @@
"display_name": "FABtotum TPU Shore 98A",
"description": "",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66",
"author": {
"author_id": "FABtotum",
@@ -1486,7 +1486,7 @@
"display_name": "Fiberlogy HD PLA",
"description": "With our HD PLA you have many more options. You can use this material in two ways. Choose the one you like best. You can use it as a normal PLA and get prints characterized by a very good adhesion between the layers and high precision. You can also make your prints acquire similar properties to that of ABS – better impact resistance and high temperature resistance. All you need is an oven. Yes, an oven! By annealing our HD PLA in an oven, in accordance with the manual, you will avoid all the inconveniences of printing with ABS, such as unpleasant odour or hazardous fumes.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/",
"author": {
"author_id": "Fiberlogy",
@@ -1503,7 +1503,7 @@
"display_name": "Filo3D PLA",
"description": "Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://dagoma.fr",
"author": {
"author_id": "Dagoma",
@@ -1520,7 +1520,7 @@
"display_name": "IMADE3D JellyBOX PETG",
"description": "",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "http://shop.imade3d.com/filament.html",
"author": {
"author_id": "IMADE3D",
@@ -1537,7 +1537,7 @@
"display_name": "IMADE3D JellyBOX PLA",
"description": "",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "http://shop.imade3d.com/filament.html",
"author": {
"author_id": "IMADE3D",
@@ -1554,7 +1554,7 @@
"display_name": "Octofiber PLA",
"description": "PLA material from Octofiber.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://nl.octofiber.com/3d-printing-filament/pla.html",
"author": {
"author_id": "Octofiber",
@@ -1571,7 +1571,7 @@
"display_name": "PolyFlex™ PLA",
"description": "PolyFlex™ is a highly flexible yet easy to print 3D printing material. Featuring good elasticity and a large strain-to- failure, PolyFlex™ opens up a completely new realm of applications.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "http://www.polymaker.com/shop/polyflex/",
"author": {
"author_id": "Polymaker",
@@ -1588,7 +1588,7 @@
"display_name": "PolyMax™ PLA",
"description": "PolyMax™ PLA is a 3D printing material with excellent mechanical properties and printing quality. PolyMax™ PLA has an impact resistance of up to nine times that of regular PLA, and better overall mechanical properties than ABS.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "http://www.polymaker.com/shop/polymax/",
"author": {
"author_id": "Polymaker",
@@ -1605,7 +1605,7 @@
"display_name": "PolyPlus™ PLA True Colour",
"description": "PolyPlus™ PLA is a premium PLA designed for all desktop FDM/FFF 3D printers. It is produced with our patented Jam-Free™ technology that ensures consistent extrusion and prevents jams.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "http://www.polymaker.com/shop/polyplus-true-colour/",
"author": {
"author_id": "Polymaker",
@@ -1622,7 +1622,7 @@
"display_name": "PolyWood™ PLA",
"description": "PolyWood™ is a wood mimic printing material that contains no actual wood ensuring a clean Jam-Free™ printing experience.",
"package_version": "1.0.1",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "http://www.polymaker.com/shop/polywood/",
"author": {
"author_id": "Polymaker",
@@ -1639,7 +1639,7 @@
"display_name": "Ultimaker ABS",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1658,7 +1658,7 @@
"display_name": "Ultimaker Breakaway",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/breakaway",
"author": {
"author_id": "UltimakerPackages",
@@ -1677,7 +1677,7 @@
"display_name": "Ultimaker CPE",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1696,7 +1696,7 @@
"display_name": "Ultimaker CPE+",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/cpe",
"author": {
"author_id": "UltimakerPackages",
@@ -1715,7 +1715,7 @@
"display_name": "Ultimaker Nylon",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1734,7 +1734,7 @@
"display_name": "Ultimaker PC",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/pc",
"author": {
"author_id": "UltimakerPackages",
@@ -1753,7 +1753,7 @@
"display_name": "Ultimaker PLA",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1772,7 +1772,7 @@
"display_name": "Ultimaker PP",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/pp",
"author": {
"author_id": "UltimakerPackages",
@@ -1791,7 +1791,7 @@
"display_name": "Ultimaker PVA",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1810,7 +1810,7 @@
"display_name": "Ultimaker TPU 95A",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/tpu-95a",
"author": {
"author_id": "UltimakerPackages",
@@ -1829,7 +1829,7 @@
"display_name": "Ultimaker Tough PLA",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://ultimaker.com/products/materials/tough-pla",
"author": {
"author_id": "UltimakerPackages",
@@ -1848,7 +1848,7 @@
"display_name": "Vertex Delta ABS",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
@@ -1865,7 +1865,7 @@
"display_name": "Vertex Delta PET",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
@@ -1882,7 +1882,7 @@
"display_name": "Vertex Delta PLA",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
@@ -1899,7 +1899,7 @@
"display_name": "Vertex Delta TPU",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
- "sdk_version": "8.4.0",
+ "sdk_version": "8.5.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json
index d0d02363de..863cd07183 100644
--- a/resources/definitions/fdmprinter.def.json
+++ b/resources/definitions/fdmprinter.def.json
@@ -2861,6 +2861,34 @@
"maximum_value_warning": "150",
"limit_to_extruder": "wall_x_extruder_nr",
"settable_per_mesh": true
+ },
+ "wall_0_material_flow_roofing":
+ {
+ "label": "Top Surface Outer Wall Flow",
+ "description": "Flow compensation on the top surface outermost wall line.",
+ "unit": "%",
+ "type": "float",
+ "default_value": 100,
+ "value": "wall_0_material_flow",
+ "minimum_value": "0.0001",
+ "minimum_value_warning": "50",
+ "maximum_value_warning": "150",
+ "limit_to_extruder": "wall_0_extruder_nr",
+ "settable_per_mesh": true
+ },
+ "wall_x_material_flow_roofing":
+ {
+ "label": "Top Surface Inner Wall(s) Flow",
+ "description": "Flow compensation on top surface wall lines for all wall lines except the outermost one.",
+ "unit": "%",
+ "type": "float",
+ "default_value": 100,
+ "value": "wall_x_material_flow",
+ "minimum_value": "0.0001",
+ "minimum_value_warning": "50",
+ "maximum_value_warning": "150",
+ "limit_to_extruder": "wall_x_extruder_nr",
+ "settable_per_mesh": true
}
}
},
@@ -3166,6 +3194,34 @@
"value": "speed_wall * 2",
"limit_to_extruder": "wall_x_extruder_nr",
"settable_per_mesh": true
+ },
+ "speed_wall_0_roofing":
+ {
+ "label": "Top Surface Outer Wall Speed",
+ "description": "The speed at which the top surface outermost walls are printed.",
+ "unit": "mm/s",
+ "type": "float",
+ "minimum_value": "0.1",
+ "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
+ "maximum_value_warning": "150",
+ "default_value": 30,
+ "value": "speed_wall_0",
+ "limit_to_extruder": "wall_0_extruder_nr",
+ "settable_per_mesh": true
+ },
+ "speed_wall_x_roofing":
+ {
+ "label": "Top Surface Inner Wall Speed",
+ "description": "The speed at which the top surface inner walls are printed.",
+ "unit": "mm/s",
+ "type": "float",
+ "minimum_value": "0.1",
+ "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)",
+ "maximum_value_warning": "150",
+ "default_value": 60,
+ "value": "speed_wall_x",
+ "limit_to_extruder": "wall_x_extruder_nr",
+ "settable_per_mesh": true
}
}
},
@@ -3509,6 +3565,36 @@
"enabled": "resolveOrValue('acceleration_enabled')",
"limit_to_extruder": "wall_x_extruder_nr",
"settable_per_mesh": true
+ },
+ "acceleration_wall_0_roofing":
+ {
+ "label": "Top Surface Outer Wall Acceleration",
+ "description": "The acceleration with which the top surface outermost walls are printed.",
+ "unit": "mm/s\u00b2",
+ "type": "float",
+ "minimum_value": "0.1",
+ "minimum_value_warning": "100",
+ "maximum_value_warning": "10000",
+ "default_value": 3000,
+ "value": "acceleration_wall_0",
+ "enabled": "resolveOrValue('acceleration_enabled')",
+ "limit_to_extruder": "wall_0_extruder_nr",
+ "settable_per_mesh": true
+ },
+ "acceleration_wall_x_roofing":
+ {
+ "label": "Top Surface Inner Wall Acceleration",
+ "description": "The acceleration with which the top surface inner walls are printed.",
+ "unit": "mm/s\u00b2",
+ "type": "float",
+ "minimum_value": "0.1",
+ "minimum_value_warning": "100",
+ "maximum_value_warning": "10000",
+ "default_value": 3000,
+ "value": "acceleration_wall_x",
+ "enabled": "resolveOrValue('acceleration_enabled')",
+ "limit_to_extruder": "wall_x_extruder_nr",
+ "settable_per_mesh": true
}
}
},
@@ -3808,6 +3894,34 @@
"enabled": "resolveOrValue('jerk_enabled')",
"limit_to_extruder": "wall_x_extruder_nr",
"settable_per_mesh": true
+ },
+ "jerk_wall_0_roofing":
+ {
+ "label": "Top Surface Outer Wall Jerk",
+ "description": "The maximum instantaneous velocity change with which the top surface outermost walls are printed.",
+ "unit": "mm/s",
+ "type": "float",
+ "minimum_value": "0",
+ "maximum_value_warning": "50",
+ "default_value": 20,
+ "value": "jerk_wall_0",
+ "enabled": "resolveOrValue('jerk_enabled')",
+ "limit_to_extruder": "wall_0_extruder_nr",
+ "settable_per_mesh": true
+ },
+ "jerk_wall_x_roofing":
+ {
+ "label": "Top Surface Inner Wall Jerk",
+ "description": "The maximum instantaneous velocity change with which the top surface inner walls are printed.",
+ "unit": "mm/s",
+ "type": "float",
+ "minimum_value": "0",
+ "maximum_value_warning": "50",
+ "default_value": 20,
+ "value": "jerk_wall_x",
+ "enabled": "resolveOrValue('jerk_enabled')",
+ "limit_to_extruder": "wall_x_extruder_nr",
+ "settable_per_mesh": true
}
}
},
@@ -4534,7 +4648,7 @@
"type": "extruder",
"default_value": "0",
"value": "support_extruder_nr",
- "enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1",
+ "enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1 and support_interface_enable",
"resolve": "max(extruderValues('support_interface_extruder_nr'))",
"settable_per_mesh": false,
"settable_per_extruder": false,
@@ -4547,7 +4661,7 @@
"type": "extruder",
"default_value": "0",
"value": "support_interface_extruder_nr",
- "enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1",
+ "enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1 and support_roof_enable",
"resolve": "max(extruderValues('support_roof_extruder_nr'))",
"settable_per_mesh": false,
"settable_per_extruder": false
@@ -4559,7 +4673,7 @@
"type": "extruder",
"default_value": "0",
"value": "support_interface_extruder_nr",
- "enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1",
+ "enabled": "(support_enable or support_meshes_present) and extruders_enabled_count > 1 and support_bottom_enable",
"resolve": "max(extruderValues('support_bottom_extruder_nr'))",
"settable_per_mesh": false,
"settable_per_extruder": false
diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json
index eeadc38a8b..24618a869b 100644
--- a/resources/definitions/ultimaker_s3.def.json
+++ b/resources/definitions/ultimaker_s3.def.json
@@ -41,6 +41,7 @@
0
],
"platform_texture": "UltimakerS3backplate.png",
+ "preferred_material": "ultimaker_pla_blue",
"preferred_quality_type": "draft",
"preferred_variant_name": "AA 0.4",
"supported_actions": [ "DiscoverUM3Action" ],
diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json
index 16887cfc78..30ac2e297d 100644
--- a/resources/definitions/ultimaker_s5.def.json
+++ b/resources/definitions/ultimaker_s5.def.json
@@ -38,6 +38,7 @@
-10
],
"platform_texture": "UltimakerS5backplate.png",
+ "preferred_material": "ultimaker_pla_blue",
"preferred_quality_type": "draft",
"preferred_variant_buildplate_name": "Glass",
"preferred_variant_name": "AA 0.4",
diff --git a/resources/definitions/ultimaker_s7.def.json b/resources/definitions/ultimaker_s7.def.json
index 16a36eefc2..d289147439 100644
--- a/resources/definitions/ultimaker_s7.def.json
+++ b/resources/definitions/ultimaker_s7.def.json
@@ -32,6 +32,7 @@
0
],
"platform_texture": "UltimakerS7backplate.png",
+ "preferred_material": "ultimaker_pla_blue",
"preferred_variant_name": "AA 0.4",
"quality_definition": "ultimaker_s5",
"supported_actions": [ "DiscoverUM3Action" ],
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg
new file mode 100644
index 0000000000..fb88768bb6
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg
@@ -0,0 +1,17 @@
+[general]
+definition = ultimaker_s3
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = high
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+speed_infill = 50
+top_bottom_thickness = 1.05
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg
new file mode 100644
index 0000000000..e06ccbc3c6
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s3
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_abs
+quality_type = fast
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg
new file mode 100644
index 0000000000..d0d5bf5c2e
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s3
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = fast
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg
new file mode 100644
index 0000000000..967051c6b6
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg
@@ -0,0 +1,24 @@
+[general]
+definition = ultimaker_s3
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_abs
+quality_type = normal
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+jerk_print = 30
+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
+top_bottom_thickness = =wall_thickness
+wall_thickness = =line_width * 3
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg
new file mode 100644
index 0000000000..c08c5e37c1
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg
@@ -0,0 +1,17 @@
+[general]
+definition = ultimaker_s3
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = normal
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+speed_infill = 50
+top_bottom_thickness = 1.05
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg
new file mode 100644
index 0000000000..e5c66d6b88
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s3
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg
new file mode 100644
index 0000000000..d51b925c24
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_print = 150
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =2 * line_width
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg
new file mode 100644
index 0000000000..98840cccdc
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s3
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..a3533c805d
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_print = 150
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =2 * line_width
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg
new file mode 100644
index 0000000000..0b2c1c3a96
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s3
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_petg
+quality_type = fast
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg
new file mode 100644
index 0000000000..9bf56f69a2
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg
@@ -0,0 +1,24 @@
+[general]
+definition = ultimaker_s3
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_petg
+quality_type = normal
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+jerk_print = 30
+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
+top_bottom_thickness = =wall_thickness
+wall_thickness = =line_width * 3
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg
new file mode 100644
index 0000000000..698fa97fc8
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s3
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg
new file mode 100644
index 0000000000..fddbf1a350
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_print = 150
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =2 * line_width
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg
new file mode 100644
index 0000000000..144994eb9b
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s3
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..638560ae82
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_print = 150
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =2 * line_width
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg
index 50545d4be9..32fb3da04b 100644
--- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.4
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg
index 47652f89e9..8f242b8bf3 100644
--- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.4
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg
index 9ca6216a54..7b0e9ff88b 100644
--- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.4
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg
index c0a6172ac3..d206bcffb9 100644
--- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.4
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg
new file mode 100644
index 0000000000..60413405bb
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s3
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg
new file mode 100644
index 0000000000..8557038cdf
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg
new file mode 100644
index 0000000000..8480dd96fe
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s3
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..b6175f198a
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg
new file mode 100644
index 0000000000..3058369081
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = superdraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg
new file mode 100644
index 0000000000..5db19be11f
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s3
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg
new file mode 100644
index 0000000000..0d34733f07
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg
new file mode 100644
index 0000000000..354e2e980a
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s3
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..6dc6a30856
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg
new file mode 100644
index 0000000000..13f9d21fac
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = superdraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg
index 2e9f8bd87b..f7e5233aa3 100644
--- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.8
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..b4b346a730
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_pla
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg
new file mode 100644
index 0000000000..b98d27da01
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_pla
+quality_type = superdraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg
index f406be1958..3bb47b25d7 100644
--- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.8
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..1ffe95220b
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_tough_pla
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg
new file mode 100644
index 0000000000..11c28e9be1
--- /dev/null
+++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s3
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_tough_pla
+quality_type = superdraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg
new file mode 100644
index 0000000000..3866a4593a
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg
@@ -0,0 +1,17 @@
+[general]
+definition = ultimaker_s5
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = high
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+speed_infill = 50
+top_bottom_thickness = 1.05
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg
new file mode 100644
index 0000000000..908186790e
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s5
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_abs
+quality_type = fast
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg
new file mode 100644
index 0000000000..6f90ea70ac
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s5
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = fast
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg
new file mode 100644
index 0000000000..b5834b5757
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg
@@ -0,0 +1,24 @@
+[general]
+definition = ultimaker_s5
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_abs
+quality_type = normal
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+jerk_print = 30
+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
+top_bottom_thickness = =wall_thickness
+wall_thickness = =line_width * 3
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg
new file mode 100644
index 0000000000..63b0273ba5
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg
@@ -0,0 +1,17 @@
+[general]
+definition = ultimaker_s5
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = normal
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+speed_infill = 50
+top_bottom_thickness = 1.05
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg
new file mode 100644
index 0000000000..c8ead2040c
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s5
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg
new file mode 100644
index 0000000000..c77fa51e12
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_print = 150
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =2 * line_width
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg
new file mode 100644
index 0000000000..a0d9fb34e5
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s5
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..eab329b62b
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_print = 150
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =2 * line_width
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg
new file mode 100644
index 0000000000..b0057d80ed
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s5
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_petg
+quality_type = fast
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg
new file mode 100644
index 0000000000..00c264aa32
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg
@@ -0,0 +1,24 @@
+[general]
+definition = ultimaker_s5
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_petg
+quality_type = normal
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+jerk_print = 30
+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
+top_bottom_thickness = =wall_thickness
+wall_thickness = =line_width * 3
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg
new file mode 100644
index 0000000000..da575d938f
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s5
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg
new file mode 100644
index 0000000000..c4b84e2053
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_print = 150
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =2 * line_width
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg
new file mode 100644
index 0000000000..b12ea3e1e6
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s5
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..f7a0557a60
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_print = 150
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =2 * line_width
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg
index 88add2c54c..cd8490c504 100644
--- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.4
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg
index 7ad908b8a9..ea2b547829 100644
--- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.4
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg
index df0a96e81c..ac3173d5c2 100644
--- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.4
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg
index d5acb79777..4a1ab82c04 100644
--- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.4
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg
new file mode 100644
index 0000000000..8281aefcf0
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s5
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg
new file mode 100644
index 0000000000..15804a0821
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg
new file mode 100644
index 0000000000..0c5210e5b2
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s5
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..4c1898658b
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg
new file mode 100644
index 0000000000..f69ca74915
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_abs
+quality_type = superdraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg
new file mode 100644
index 0000000000..ed5a152040
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg
@@ -0,0 +1,28 @@
+[general]
+definition = ultimaker_s5
+name = Accurate
+version = 4
+
+[metadata]
+intent_category = engineering
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+infill_sparse_density = 20
+jerk_print = 30
+speed_infill = =speed_print
+speed_print = 35
+speed_roofing = =speed_topbottom
+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_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg
new file mode 100644
index 0000000000..d723ee511f
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg
new file mode 100644
index 0000000000..8959431e83
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg
@@ -0,0 +1,25 @@
+[general]
+definition = ultimaker_s5
+name = Visual
+version = 4
+
+[metadata]
+intent_category = visual
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
+acceleration_print = 2500
+acceleration_wall_0 = 1000
+inset_direction = inside_out
+jerk_wall_0 = 20
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(35/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..623ae45d75
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg
new file mode 100644
index 0000000000..994f21610e
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_petg
+quality_type = superdraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg
index 79e0432210..a3dce2468c 100644
--- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.8
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..3d04b22ffa
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_pla
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg
new file mode 100644
index 0000000000..8976d8902c
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_pla
+quality_type = superdraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg
index c448ea51b4..9471e49714 100644
--- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg
@@ -12,13 +12,14 @@ type = intent
variant = AA 0.8
[values]
-_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5
acceleration_print = 2500
acceleration_wall_0 = 1000
inset_direction = inside_out
jerk_wall_0 = 20
speed_print = 50
speed_roofing = =math.ceil(speed_wall*(35/50))
-speed_wall_0 = =math.ceil(speed_wall*(25/50))
+speed_wall_0 = =math.ceil(speed_wall*(20/50))
+speed_wall_x = =math.ceil(speed_wall*(35/50))
top_bottom_thickness = =max(1.2 , layer_height * 6)
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg
new file mode 100644
index 0000000000..912a50d05c
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_tough_pla
+quality_type = verydraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg
new file mode 100644
index 0000000000..c6e45c7f89
--- /dev/null
+++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg
@@ -0,0 +1,26 @@
+[general]
+definition = ultimaker_s5
+name = Quick
+version = 4
+
+[metadata]
+intent_category = quick
+material = ultimaker_tough_pla
+quality_type = superdraft
+setting_version = 22
+type = intent
+variant = AA 0.8
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False
+acceleration_wall_0 = 2000
+gradual_infill_step_height = =4 * layer_height
+gradual_infill_steps = 3
+infill_sparse_density = 40
+jerk_print = 30
+jerk_wall_0 = 30
+speed_wall = =speed_print
+speed_wall_0 = 40
+top_bottom_thickness = =4 * layer_height
+wall_thickness = =wall_line_width_0
+
diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml
index 65888b3493..458d7fcaae 100644
--- a/resources/qml/Actions.qml
+++ b/resources/qml/Actions.qml
@@ -494,6 +494,13 @@ Item
shortcut: fileProviderModel.count == 1 ? StandardKey.Open : ""
}
+ Action
+ {
+ id: arrangeSelectionAction
+ text: catalog.i18nc("@action:inmenu menubar:edit", "Arrange Selection")
+ onTriggered: Printer.arrangeSelection()
+ }
+
Action
{
id: newProjectAction
diff --git a/resources/qml/Dialogs/ColorDialog.qml b/resources/qml/Dialogs/ColorDialog.qml
new file mode 100644
index 0000000000..c0d15154f5
--- /dev/null
+++ b/resources/qml/Dialogs/ColorDialog.qml
@@ -0,0 +1,12 @@
+// Copyright (c) 2023 UltiMaker
+// Cura is released under the terms of the LGPLv3 or higher.
+
+import QtQuick 2.7
+import QtQuick.Controls 2.15
+import QtQuick.Layouts 1.3
+import QtQuick.Dialogs
+
+// due for deprication, use Qt Color Dialog instead
+ColorDialog
+{
+}
\ No newline at end of file
diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml
index 44b3d28e24..16f1e7cccd 100644
--- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml
+++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml
@@ -43,8 +43,10 @@ RecommendedSettingSection
settingControl: Cura.SingleSettingComboBox
{
+ id:support
width: parent.width
settingName: "support_structure"
+ propertyRemoveUnusedValue: false
}
},
RecommendedSettingItem
@@ -60,6 +62,7 @@ RecommendedSettingSection
settingControl: Cura.SingleSettingExtruderSelectorBar
{
extruderSettingName: "support_extruder_nr"
+ onSelectedIndexChanged: support.forceUpdateSettings()
}
},
RecommendedSettingItem
diff --git a/resources/qml/Widgets/SingleSettingComboBox.qml b/resources/qml/Widgets/SingleSettingComboBox.qml
index 1b7101e9e7..fa150894f8 100644
--- a/resources/qml/Widgets/SingleSettingComboBox.qml
+++ b/resources/qml/Widgets/SingleSettingComboBox.qml
@@ -15,6 +15,7 @@ import Cura 1.7 as Cura
Cura.ComboBox {
textRole: "text"
property alias settingName: propertyProvider.key
+ property alias propertyRemoveUnusedValue: propertyProvider.removeUnusedValue
// If true, all extruders will have "settingName" property updated.
// The displayed value will be read from the extruder with index "defaultExtruderIndex" instead of the machine.
@@ -87,6 +88,10 @@ Cura.ComboBox {
}
}
+ function forceUpdateSettings()
+ {
+ comboboxModel.updateModel();
+ }
function updateSetting(value)
{
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg
new file mode 100644
index 0000000000..ada1c2cefb
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg
@@ -0,0 +1,21 @@
+[general]
+definition = ultimaker_s3
+name = Fine
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = normal
+setting_version = 22
+type = quality
+variant = AA 0.25
+weight = 0
+
+[values]
+material_print_temperature = =default_material_print_temperature - 20
+speed_topbottom = =math.ceil(speed_print * 30 / 55)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg
new file mode 100644
index 0000000000..fe8efb08d8
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg
@@ -0,0 +1,23 @@
+[general]
+definition = ultimaker_s3
+name = Fine
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = normal
+setting_version = 22
+type = quality
+variant = AA 0.25
+weight = 0
+
+[values]
+material_print_temperature = =default_material_print_temperature - 15
+speed_infill = =math.ceil(speed_print * 40 / 55)
+speed_topbottom = =math.ceil(speed_print * 30 / 55)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = 0.8
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg
new file mode 100644
index 0000000000..312afa0421
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg
@@ -0,0 +1,29 @@
+[general]
+definition = ultimaker_s3
+name = Extra Fine
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = high
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = 1
+
+[values]
+machine_nozzle_cool_down_speed = 0.8
+machine_nozzle_heat_up_speed = 1.5
+material_final_print_temperature = =material_print_temperature - 20
+material_print_temperature = =default_material_print_temperature - 10
+prime_tower_enable = False
+raft_airgap = 0.15
+speed_infill = =math.ceil(speed_print * 40 / 50)
+speed_print = 50
+speed_topbottom = =math.ceil(speed_print * 30 / 50)
+speed_wall = =math.ceil(speed_print * 30 / 50)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg
new file mode 100644
index 0000000000..7abb51e6a1
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s3
+name = Normal
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = fast
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -1
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_max_flowrate = 20
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+raft_airgap = 0.15
+retraction_amount = 6.5
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg
new file mode 100644
index 0000000000..b53e8275a2
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg
@@ -0,0 +1,29 @@
+[general]
+definition = ultimaker_s3
+name = Fine
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = normal
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = 0
+
+[values]
+machine_nozzle_cool_down_speed = 0.85
+machine_nozzle_heat_up_speed = 1.5
+material_final_print_temperature = =material_print_temperature - 20
+material_print_temperature = =default_material_print_temperature - 5
+prime_tower_enable = False
+raft_airgap = 0.15
+speed_infill = =math.ceil(speed_print * 40 / 55)
+speed_print = 55
+speed_topbottom = =math.ceil(speed_print * 30 / 55)
+speed_wall = =math.ceil(speed_print * 30 / 55)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg
new file mode 100644
index 0000000000..4a13761db4
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg
@@ -0,0 +1,77 @@
+[general]
+definition = ultimaker_s3
+name = Fast
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -2
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_max_flowrate = 20
+material_print_temperature = =default_material_print_temperature + 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+raft_airgap = 0.15
+retraction_amount = 6.5
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg
new file mode 100644
index 0000000000..1af4082a79
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg
@@ -0,0 +1,78 @@
+[general]
+definition = ultimaker_s3
+name = Extra Fast
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = verydraft
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -3
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_max_flowrate = 20
+material_print_temperature = =default_material_print_temperature + 7
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+raft_airgap = 0.15
+retraction_amount = 6.5
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg
new file mode 100644
index 0000000000..1b7919bd02
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s3
+name = Extra Fine
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = high
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = 1
+
+[values]
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+machine_nozzle_cool_down_speed = 0.85
+machine_nozzle_heat_up_speed = 1.5
+material_print_temperature = =default_material_print_temperature - 10
+speed_infill = =math.ceil(speed_print * 40 / 50)
+speed_print = 50
+speed_topbottom = =math.ceil(speed_print * 30 / 50)
+speed_wall = =math.ceil(speed_print * 30 / 50)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg
new file mode 100644
index 0000000000..0f06b32800
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg
@@ -0,0 +1,75 @@
+[general]
+definition = ultimaker_s3
+name = Normal
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = fast
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -1
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_max_flowrate = 20
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+retraction_amount = 8
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg
new file mode 100644
index 0000000000..afa05aa2cf
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s3
+name = Fine
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = normal
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = 0
+
+[values]
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+machine_nozzle_cool_down_speed = 0.85
+machine_nozzle_heat_up_speed = 1.5
+material_print_temperature = =default_material_print_temperature - 5
+speed_infill = =math.ceil(speed_print * 45 / 55)
+speed_print = 55
+speed_topbottom = =math.ceil(speed_print * 30 / 55)
+speed_wall = =math.ceil(speed_print * 30 / 55)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg
new file mode 100644
index 0000000000..4a440bcf6d
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s3
+name = Fast
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -2
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_max_flowrate = 20
+material_print_temperature = =default_material_print_temperature + 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+retraction_amount = 8
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg
new file mode 100644
index 0000000000..d9d675caab
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg
@@ -0,0 +1,77 @@
+[general]
+definition = ultimaker_s3
+name = Extra Fast
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = verydraft
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -3
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_max_flowrate = 20
+material_print_temperature = =default_material_print_temperature + 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+retraction_amount = 8
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg
index e6c9360624..8caa4d6954 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg
@@ -62,6 +62,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg
index 43d14439b5..630021679a 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg
index c587c259cd..b7f1c4d8c2 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg
index 8e744b07ee..a2b101c8d4 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg
@@ -62,6 +62,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg
index ef25da0c2f..ad7a59195e 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg
@@ -62,6 +62,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg
index b2da6e6244..9c73153775 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg
new file mode 100644
index 0000000000..347846b1b9
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s3
+name = Fast
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -2
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_flow = 93
+material_max_flowrate = 22
+material_print_temperature = =default_material_print_temperature + 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = True
+raft_airgap = 0.15
+retraction_amount = 4
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg
new file mode 100644
index 0000000000..076e96b255
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s3
+name = Extra Fast
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = verydraft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -3
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_flow = 93
+material_max_flowrate = 22
+material_print_temperature = =default_material_print_temperature + 7
+optimize_wall_printing_order = False
+prime_tower_enable = True
+raft_airgap = 0.15
+retraction_amount = 4
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 75
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/75))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg
new file mode 100644
index 0000000000..5e0238b8cb
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s3
+name = Sprint
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = superdraft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_flow = 93
+material_max_flowrate = 22
+material_print_temperature = =default_material_print_temperature + 10
+optimize_wall_printing_order = False
+prime_tower_enable = True
+raft_airgap = 0.15
+retraction_amount = 4
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/50))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg
new file mode 100644
index 0000000000..72cb67e359
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg
@@ -0,0 +1,75 @@
+[general]
+definition = ultimaker_s3
+name = Fast
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -2
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_flow = 93
+material_max_flowrate = 23
+material_print_temperature = =default_material_print_temperature - 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = True
+retraction_amount = 3.5
+retraction_prime_speed = 22
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg
new file mode 100644
index 0000000000..2dac5f2514
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg
@@ -0,0 +1,75 @@
+[general]
+definition = ultimaker_s3
+name = Extra Fast
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = verydraft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -3
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_flow = 93
+material_max_flowrate = 23
+material_print_temperature = =default_material_print_temperature - 5
+optimize_wall_printing_order = False
+prime_tower_enable = True
+retraction_amount = 3.5
+retraction_prime_speed = 22
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 75
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/75))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg
new file mode 100644
index 0000000000..f6c1e041b5
--- /dev/null
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg
@@ -0,0 +1,75 @@
+[general]
+definition = ultimaker_s3
+name = Sprint
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = superdraft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_flow = 93
+material_max_flowrate = 23
+material_print_temperature = =default_material_print_temperature - 5
+optimize_wall_printing_order = False
+prime_tower_enable = True
+retraction_amount = 3.5
+retraction_prime_speed = 22
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/50))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg
index bc2228b410..127b93992a 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg
@@ -47,8 +47,8 @@ meshfix_maximum_resolution = 0.7
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -64,6 +64,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg
index dd11f01825..d31ec95928 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg
@@ -46,8 +46,8 @@ material_print_temperature = =default_material_print_temperature + 10
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/65))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg
index 143245b59b..19aaefcb39 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg
@@ -46,8 +46,8 @@ material_print_temperature = =default_material_print_temperature + 15
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/45))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg
index dff75787fd..187be4ba9d 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg
@@ -47,8 +47,8 @@ meshfix_maximum_resolution = 0.7
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -64,6 +64,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg
index 371c2b26a8..f0e50dcbed 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg
@@ -46,8 +46,8 @@ material_print_temperature = =default_material_print_temperature + 15
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/65))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg
index e2f52a4b8a..71e9ae15f5 100644
--- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg
+++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg
@@ -46,8 +46,8 @@ material_print_temperature = =default_material_print_temperature + 15
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/45))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg
new file mode 100644
index 0000000000..1b6c680650
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg
@@ -0,0 +1,21 @@
+[general]
+definition = ultimaker_s5
+name = Fine
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = normal
+setting_version = 22
+type = quality
+variant = AA 0.25
+weight = 0
+
+[values]
+material_print_temperature = =default_material_print_temperature - 20
+speed_topbottom = =math.ceil(speed_print * 30 / 55)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg
new file mode 100644
index 0000000000..c5cadca4bd
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg
@@ -0,0 +1,23 @@
+[general]
+definition = ultimaker_s5
+name = Fine
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = normal
+setting_version = 22
+type = quality
+variant = AA 0.25
+weight = 0
+
+[values]
+material_print_temperature = =default_material_print_temperature - 15
+speed_infill = =math.ceil(speed_print * 40 / 55)
+speed_topbottom = =math.ceil(speed_print * 30 / 55)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = 0.8
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg
new file mode 100644
index 0000000000..a69ff33f76
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg
@@ -0,0 +1,29 @@
+[general]
+definition = ultimaker_s5
+name = Extra Fine
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = high
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = 1
+
+[values]
+machine_nozzle_cool_down_speed = 0.8
+machine_nozzle_heat_up_speed = 1.5
+material_final_print_temperature = =material_print_temperature - 20
+material_print_temperature = =default_material_print_temperature - 10
+prime_tower_enable = False
+raft_airgap = 0.15
+speed_infill = =math.ceil(speed_print * 40 / 50)
+speed_print = 50
+speed_topbottom = =math.ceil(speed_print * 30 / 50)
+speed_wall = =math.ceil(speed_print * 30 / 50)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg
new file mode 100644
index 0000000000..86dd7765f0
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s5
+name = Normal
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = fast
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -1
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_max_flowrate = 20
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+raft_airgap = 0.15
+retraction_amount = 6.5
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg
new file mode 100644
index 0000000000..ca659622cb
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg
@@ -0,0 +1,29 @@
+[general]
+definition = ultimaker_s5
+name = Fine
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = normal
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = 0
+
+[values]
+machine_nozzle_cool_down_speed = 0.85
+machine_nozzle_heat_up_speed = 1.5
+material_final_print_temperature = =material_print_temperature - 20
+material_print_temperature = =default_material_print_temperature - 5
+prime_tower_enable = False
+raft_airgap = 0.15
+speed_infill = =math.ceil(speed_print * 40 / 55)
+speed_print = 55
+speed_topbottom = =math.ceil(speed_print * 30 / 55)
+speed_wall = =math.ceil(speed_print * 30 / 55)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg
new file mode 100644
index 0000000000..3ab5807dcc
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg
@@ -0,0 +1,77 @@
+[general]
+definition = ultimaker_s5
+name = Fast
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -2
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_max_flowrate = 20
+material_print_temperature = =default_material_print_temperature + 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+raft_airgap = 0.15
+retraction_amount = 6.5
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg
new file mode 100644
index 0000000000..c319b88dbe
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg
@@ -0,0 +1,78 @@
+[general]
+definition = ultimaker_s5
+name = Extra Fast
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = verydraft
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -3
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_max_flowrate = 20
+material_print_temperature = =default_material_print_temperature + 7
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+raft_airgap = 0.15
+retraction_amount = 6.5
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg
new file mode 100644
index 0000000000..9545d34977
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s5
+name = Extra Fine
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = high
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = 1
+
+[values]
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+machine_nozzle_cool_down_speed = 0.85
+machine_nozzle_heat_up_speed = 1.5
+material_print_temperature = =default_material_print_temperature - 10
+speed_infill = =math.ceil(speed_print * 40 / 50)
+speed_print = 50
+speed_topbottom = =math.ceil(speed_print * 30 / 50)
+speed_wall = =math.ceil(speed_print * 30 / 50)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg
new file mode 100644
index 0000000000..fbfff69845
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg
@@ -0,0 +1,75 @@
+[general]
+definition = ultimaker_s5
+name = Normal
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = fast
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -1
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_max_flowrate = 20
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+retraction_amount = 8
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg
new file mode 100644
index 0000000000..4a20bd76b3
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg
@@ -0,0 +1,27 @@
+[general]
+definition = ultimaker_s5
+name = Fine
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = normal
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = 0
+
+[values]
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
+machine_nozzle_cool_down_speed = 0.85
+machine_nozzle_heat_up_speed = 1.5
+material_print_temperature = =default_material_print_temperature - 5
+speed_infill = =math.ceil(speed_print * 45 / 55)
+speed_print = 55
+speed_topbottom = =math.ceil(speed_print * 30 / 55)
+speed_wall = =math.ceil(speed_print * 30 / 55)
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg
new file mode 100644
index 0000000000..45c6911c71
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s5
+name = Fast
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -2
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_max_flowrate = 20
+material_print_temperature = =default_material_print_temperature + 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+retraction_amount = 8
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg
new file mode 100644
index 0000000000..38788467c8
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg
@@ -0,0 +1,77 @@
+[general]
+definition = ultimaker_s5
+name = Extra Fast
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = verydraft
+setting_version = 22
+type = quality
+variant = AA 0.4
+weight = -3
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_max_flowrate = 20
+material_print_temperature = =default_material_print_temperature + 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = False
+retraction_amount = 8
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_bottom_distance = =support_z_distance
+support_interface_enable = True
+support_structure = tree
+support_top_distance = =support_z_distance
+support_z_distance = =math.ceil(0.3/layer_height)*layer_height
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg
index c61ae62a68..b981d85c3b 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg
@@ -62,6 +62,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg
index 87a7afa07a..f8d3e87c8e 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg
index 121198ed43..7e00bf8861 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg
index 5cc26cc212..2fed514e6e 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg
@@ -62,6 +62,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg
index 7d8beb0bd1..c27f7fb80a 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg
@@ -62,6 +62,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg
index 55316b6dea..b8784742f9 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_bottom_distance = =support_z_distance
support_interface_enable = True
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg
new file mode 100644
index 0000000000..f7e39dba43
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s5
+name = Fast
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = draft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -2
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_flow = 93
+material_max_flowrate = 22
+material_print_temperature = =default_material_print_temperature + 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = True
+raft_airgap = 0.15
+retraction_amount = 4
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg
new file mode 100644
index 0000000000..3db755142d
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s5
+name = Extra Fast
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = verydraft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -3
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_flow = 93
+material_max_flowrate = 22
+material_print_temperature = =default_material_print_temperature + 7
+optimize_wall_printing_order = False
+prime_tower_enable = True
+raft_airgap = 0.15
+retraction_amount = 4
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 75
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/75))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg
new file mode 100644
index 0000000000..0d345de087
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg
@@ -0,0 +1,76 @@
+[general]
+definition = ultimaker_s5
+name = Sprint
+version = 4
+
+[metadata]
+material = ultimaker_abs
+quality_type = superdraft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.3
+machine_nozzle_heat_up_speed = 1.9
+material_extrusion_cool_down_speed = 0.8
+material_flow = 93
+material_max_flowrate = 22
+material_print_temperature = =default_material_print_temperature + 10
+optimize_wall_printing_order = False
+prime_tower_enable = True
+raft_airgap = 0.15
+retraction_amount = 4
+retraction_prime_speed = 15
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/50))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg
new file mode 100644
index 0000000000..0c56873d1e
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg
@@ -0,0 +1,75 @@
+[general]
+definition = ultimaker_s5
+name = Fast
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = draft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -2
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_flow = 93
+material_max_flowrate = 23
+material_print_temperature = =default_material_print_temperature - 5
+meshfix_maximum_resolution = 0.7
+optimize_wall_printing_order = False
+prime_tower_enable = True
+retraction_amount = 3.5
+retraction_prime_speed = 22
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 100
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/100))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg
new file mode 100644
index 0000000000..78fabc448d
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg
@@ -0,0 +1,75 @@
+[general]
+definition = ultimaker_s5
+name = Extra Fast
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = verydraft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -3
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_flow = 93
+material_max_flowrate = 23
+material_print_temperature = =default_material_print_temperature - 5
+optimize_wall_printing_order = False
+prime_tower_enable = True
+retraction_amount = 3.5
+retraction_prime_speed = 22
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 75
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/75))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg
new file mode 100644
index 0000000000..ccc1da9d31
--- /dev/null
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg
@@ -0,0 +1,75 @@
+[general]
+definition = ultimaker_s5
+name = Sprint
+version = 4
+
+[metadata]
+material = ultimaker_petg
+quality_type = superdraft
+setting_version = 22
+type = quality
+variant = AA 0.8
+weight = -4
+
+[values]
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2
+_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True
+_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1
+acceleration_infill = =acceleration_print
+acceleration_ironing = 1000
+acceleration_layer_0 = =acceleration_wall_0
+acceleration_print = 3500
+acceleration_roofing = =acceleration_wall_0
+acceleration_topbottom = =acceleration_wall
+acceleration_wall = =acceleration_infill
+acceleration_wall_0 = 1500
+acceleration_wall_x = =acceleration_wall
+bridge_skin_speed = =bridge_wall_speed
+bridge_sparse_infill_max_density = 50
+bridge_wall_speed = 30
+cool_min_layer_time = 4
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid'
+infill_sparse_density = 15
+jerk_infill = =jerk_print
+jerk_layer_0 = =jerk_wall_0
+jerk_print = =max(30, speed_print/2)
+jerk_roofing = =jerk_wall_0
+jerk_topbottom = =jerk_wall
+jerk_wall = =jerk_infill
+jerk_wall_0 = =max(30, speed_wall_0/2)
+machine_nozzle_cool_down_speed = 1.4
+machine_nozzle_heat_up_speed = 1.7
+material_extrusion_cool_down_speed = 0.7
+material_flow = 93
+material_max_flowrate = 23
+material_print_temperature = =default_material_print_temperature - 5
+optimize_wall_printing_order = False
+prime_tower_enable = True
+retraction_amount = 3.5
+retraction_prime_speed = 22
+retraction_speed = 45
+skin_no_small_gaps_heuristic = True
+small_skin_on_surface = False
+small_skin_width = 4
+speed_infill = =speed_print
+speed_ironing = 20
+speed_layer_0 = =speed_roofing
+speed_prime_tower = =speed_wall_0
+speed_print = 50
+speed_roofing = =math.ceil(speed_wall*(45/100))
+speed_support_interface = =speed_wall_0
+speed_topbottom = =speed_print
+speed_wall = =speed_infill
+speed_wall_0 = =math.ceil(speed_wall*(30/50))
+speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
+support_angle = 70
+support_interface_enable = False
+support_structure = tree
+top_bottom_thickness = =max(1.2 , layer_height * 6)
+wall_0_wipe_dist = 0.8
+wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25)
+z_seam_relative = True
+z_seam_type = back
+zig_zaggify_infill = True
+
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg
index f1f87efa24..18f2e33620 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg
@@ -47,8 +47,8 @@ meshfix_maximum_resolution = 0.7
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -64,6 +64,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg
index 2a8a223549..6bd0c4591c 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg
@@ -46,8 +46,8 @@ material_print_temperature = =default_material_print_temperature + 10
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/65))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg
index dd811a3972..4b4e2e6c1b 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg
@@ -46,8 +46,8 @@ material_print_temperature = =default_material_print_temperature + 15
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/45))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg
index fd614b4df8..d314322a0d 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg
@@ -47,8 +47,8 @@ meshfix_maximum_resolution = 0.7
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -64,6 +64,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/100))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg
index d5db6e5887..b47ed27752 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg
@@ -46,8 +46,8 @@ material_print_temperature = =default_material_print_temperature + 15
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/65))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg
index a051367bb1..f5349cb2a7 100644
--- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg
+++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg
@@ -46,8 +46,8 @@ material_print_temperature = =default_material_print_temperature + 15
optimize_wall_printing_order = False
prime_tower_enable = True
raft_airgap = 0.25
-retraction_amount = 6.5
-retraction_prime_speed = =retraction_speed
+retraction_amount = 4
+retraction_prime_speed = 22
retraction_speed = 45
skin_no_small_gaps_heuristic = True
small_skin_on_surface = False
@@ -63,6 +63,7 @@ speed_topbottom = =speed_print
speed_wall = =speed_infill
speed_wall_0 = =math.ceil(speed_wall*(30/45))
speed_wall_x = =speed_wall
+speed_wall_x_roofing = =speed_roofing
support_angle = 70
support_interface_enable = False
support_structure = tree
diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg
index abb4b81dba..ff502fd80a 100644
--- a/resources/setting_visibility/expert.cfg
+++ b/resources/setting_visibility/expert.cfg
@@ -129,6 +129,8 @@ material_flow
wall_material_flow
wall_0_material_flow
wall_x_material_flow
+wall_0_material_flow_roofing
+wall_x_material_flow_roofing
skin_material_flow
roofing_material_flow
infill_material_flow
@@ -152,6 +154,8 @@ speed_infill
speed_wall
speed_wall_0
speed_wall_x
+speed_wall_0_roofing
+speed_wall_x_roofing
speed_roofing
speed_topbottom
speed_support
@@ -171,6 +175,8 @@ acceleration_infill
acceleration_wall
acceleration_wall_0
acceleration_wall_x
+acceleration_wall_0_roofing
+acceleration_wall_x_roofing
acceleration_roofing
acceleration_topbottom
acceleration_support
@@ -188,6 +194,8 @@ jerk_infill
jerk_wall
jerk_wall_0
jerk_wall_x
+jerk_wall_0_roofing
+jerk_wall_x_roofing
jerk_roofing
jerk_topbottom
jerk_support
diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt
index bc7befbb8a..c45e005608 100644
--- a/resources/texts/change_log.txt
+++ b/resources/texts/change_log.txt
@@ -1,3 +1,99 @@
+[5.5]
+
+* Engine Plugins
+- Introduced infrastructure for Engine Plugins; Plugin developers can now hook into and change the actual slice process using a programming language in which they feel comfortable: C++, Python, C#/.NET, Dart, Go, Java, Kotlin, Node, Objective-C, PHP, Ruby
+- In this initial version, plugins can hook into the following engine slots:
+-- Modify generated gcode, postprocessing it per layer
+-- Generate Infill patterns
+-- Modify extrusion paths
+-- Listen to a broadcast of all Settings
+- Cura plugins can now easily add new Settings and extend existing dropdown Settings
+- Users are now warned if a previously saved project file depends on a plugin and that plugin isn't installed in the Cura instance which tries to load it
+- To showcase this new infrastructure we introduced a Gradual Flow Engine plugin; This plugin prevents sudden drastic changes in flow transitions. You can find it under your bundled plugins and the new gradual flow settings can be found in the material category when all settings are visible
+
+* Introduced Settings
+- Gradual Flow Enabled, Gradual Flow Max Acceleration, Initial Layer Max Flow Acceleration, Gradual Flow discretization step size, are to finetune the Gradual Flow plug-in.
+- Top Surface Outer Wall Flow, Top Surface Inner Wall Flow, Top Surface Outer Wall Speed, Top Surface Inner Wall Speed, Top Surface Outer Wall Acceleration, Top Surface Inner Wall Acceleration, Top Surface Outer Wall Jerk, and Top Surface Inner Wall Jerk settings can be used to tune the top surface of your models.
+- Small Top/Bottom Width reduces jerky motions in small top/bottom surfaces, with Small Top/Bottom On Surface you can exclude the setting on the surface
+- Enable Fluid Motion, Fluid Motion Shift Distance, Fluid Motions Small Distance, and Fluid Motion Angle are settings for printers with smooth motion planners like Klipper.
+- Group Outer Walls will bundle types of walls in the same layer reducing travels, thanks to the contribution by @Arcari55
+
+* Updates on supported OSses
+- Introduced Mac OSX builds for ARM64 (M1 support), next to our existing X64 builds. With major contributions from @TheSin
+- Introduced a single Linux build removing the need to have a different modern and regular Linux build.
+
+* Setting improvements for Ultimaker Printers
+- UltiMaker printers with UltiMaker Materials have faster-predicted printing times as a result of a number of changed printing speeds
+- UltiMaker configurations with limited intent in the past, like AA 0.8 cores, now have more intents available
+- Updated printing temperatures for UltiMaker printers to be more uniform
+- Updated Support Interface Settings for UltiMaker printers
+- Introduced a support material tag, so support is automatically printed with support material
+
+* Quality of Life Improvements
+- Use Tab to navigate between settings in the Per Model Settings window
+- Introduced Ctrl-C and Ctrl-V next to the current multiply behavior
+- Arrange your models in a grid with the same orientation with Grid Placement
+- A message that shows when your Removable Disk is out of space and prevents incomplete gcodes from being saved
+- Add Printer and Printer Settings windows are now resizable to fit in more start/end gcode.
+- Restored the color picker tool when creating custom materials.
+- You can now scroll through long messages, and can easily close them if you finished reading
+- Searching for materials and plugins in the Cura Marketplace has been improved
+- "This Setting Is Hidden Because" icons were missing in the settings visibility for Windows and Mac
+- You can now load multiple files again even if they are mixed STLs and Project Files
+- It seemed like models could be multiplied more than 99 times, there is now a limit
+- It's now clearer if Cura is syncing materials over the cloud
+- It's not possible anymore to send a printjob to an turned off cloud connected UltiMaker printer
+
+* Other Features
+- You can now sponsor the Cura team from the Application Switcher, and Help menu
+- Infill behavior close to the skin to prevent jerky motions and visible overextrusion
+- The About Dialog includes more build information for Cura developers
+- Introduced more hardware info like system, release, version, processor, and CPU cores to the logging to improve troubleshooting.
+- Updated supporting certify libraries
+- Introduced a new Post Processing Script; Limit XY Accel for bed-slinger printers, contributed by @GregValiant
+- Introduced the machine name in the gcode headers, contributed by @smartin015
+
+* Bug Fixes that improve Printed Part Quality
+- The first support layers were printed incorrectly if adhesion was set to None
+- The support was printed before the brim when the origin was at the center of the buildplate
+- Printers with a high resolution would incorrectly print embossed features
+- The flow would unexpectedly increase after a bridge was completed.
+- Bridging settings would not be applied to the first skin layer if the infill density was set to 0
+- The skirt height could collide with some models and could be printed in support
+- A brim would be too small if the extruder was not defined.
+- The Initial Buildplate and Printing Temperature would not be applied correctly when printing One-At-A-Time
+
+* Other Bug Fixes
+- You could not load some Marketplace materials with intents on the like BASF Ultrafuse 17-4PH
+- For some Linux versions it was not possible to add a 3D printer
+- Fixed the installation screen for DMG installation because it still had the old logo.
+- The minimum support area was not working correctly for tree support
+- Support Horizontal Expansion would be hidden but influenced the warning for Support Interface
+- The shadow in One-At-A-Time printing sequence would not correctly resize with the skirt/brim size
+- It was not possible to select the support structure with basic setting visibility.
+- Removed the option to change the Brim Distance in the per object setting untilit is fixed
+- Fixed a slicing crash if the skirt was larger than the buildplate
+- Fixed a crash that would be caused when rotating a model only a little
+- If support interface is disabled, you can no longer change those settings
+- Ints would be truncated instead of rounded in the engine, contributed by @onitake
+- Fixed a non-raw RegEx pattern string removing a depreciation warning contributed by @cgobat
+
+* Printer definitions, profiles and materials:
+- For MacOS users these printers are supported again: Elegoo, Strateo3D, Uni, ZAV
+- Added Anycubic Kobra Plus, contributed by @Jordonbc
+- Added Creality Ender-5 S1, contributed @thomaspleasance
+- Added Entina Tina 2, contributed by @protosam
+- Added Pulse XE E444M, contributed by @randyzwitch
+- Updated Primetower settings for Sovol 2
+- Updated Kingroon KP3S Pro, contributed by @Tachyonn
+- Updated All Goofoo 3D printers to have more nozzles, contributed by @goofoo3d
+- Updated Tree Support settings for Elegoo Printers, Contributed by @ThomasRahm
+- Updated Voron Trident 250, 300 & 350 Voron to include new nozzles, contributed by @zadi15
+- Updated Creality Ender 3 start gcode to prevent bed scratching, Contributed by @PresentMonkey
+- Updated nozzle options for Dagoma Pro 430, contributed by @0r31
+- Updated start gcode and homing behavior in Creality Ender 3 S1, contributed by @GregValiant.
+- Updated faulty disallowed areas for Anycubic Kossel, contributed by @GregValiant
+
[5.4]
* Introduced the new Tree Support contributed by @ThomasRahm
@@ -511,208 +607,4 @@ Ultimaker Cura 5.0 is now compatible with Apple M1.
Ubuntu 18.04 is also no longer supported because of the update to Qt6.
[4.13.1]
-* Bug fixes
-- Fixed a bug where tree support could go through the model
-- Fixed a bug where there were incomplete layers in surface mode
-
-[4.13.0]
-For an overview of the new features in Cura 4.13, please watch our video.
-
-* Sync material profiles
-With Ultimaker Cura 4.13, we give you access to a seamless material experience for Ultimaker Material Alliance materials – with the ease of use you’ve come to expect from Ultimaker materials. You can easily synchronize your Material Alliance profiles with your S-line Ultimaker hardware, at the click of a button.
-
-* New print profile
-A new print profile with 0.3mm layer height for PLA Tough PLA, PVA and BAM for Ultimaker S-line printers
-
-* 3MF thumbnail
-Show the model in the thumbnail of a .3mf file, contributed by fieldOfView
-
-* Infill density
-When printing with a 100% infill the infill pattern will change to ZigZag for all Ultimaker print profiles
-
-* User login authentication
-We’ve streamlined the user login authentication by removing any restrictions, especially for strict enterprise-level IT requirements.
-
-* Other new features and improvements:
-- Improved TPU: top layers have large bridge distance
-- Add warning icon to show which extruder is causing the configuration to be 'Not Supported', contributed by fieldOfView
-- Show what's new pages with every Cura build
-- Speed up loading of settings list
-- Re-use vertex buffer objects in rendering
-- Add Build Volume Temperature value to ChangeAtZ, contributed by legend069
-- Allow plugins to have multiple views, contributed by Tyronnosaurus
-- Reduced top/bottom speed for TPU
-- Increased lined width for 0.3mm layer height profiles
-- Improved logging to allow debugging in early start-up process
-
-* Bug fixes:
-- Fixed a bug with surface mode will not print all layers
-- Fixed a bug where maximum retraction could cause a crash
-- Reduced flow for 100% density parts
-- Fixed a bug in Surface Mode where small line-segments were created
-- Changed the Russian translation for 'nozzle', contributed by mlapkin
-- Fixed a visualization bug where layer lines were rendered in weird directions
-- Fixed a crash when receiving incomplete cloud API responses
-- Add SET_RPATH option to CMake, contributed by boomanaiden154
-- Fixed initial layer bed and print head temperature for Snapmaker profile, contributed by prueker
-- Fixed shader compilation on some GPUs, contributed by fieldOfView
-- Fixed a bug where Cross 3D infill pattern vertical angles varies wildly
-- Bridge Skin Density can be set above 100%
-- Fixed tiny travel moves when monotonic ordering was enabled
-- Fix crash when using 'Select face to align to the build plate', contributed by eliadevito
-- Fixed a bug in fuzzy skin where sometimes it produced weird long overshoots, contributed by BagelOrb
-- Fixed undo and redo for support blockers
-- Fixed a bug where the Native CAD plugin wouldn't loading
-- Fixed a bug where the camera view toggle was not visible
-- Fixed some German translations, contributed by Sekisback
-- Fixed the link of the beta update message
-- Fixed a crash due to extruder being out of range
-- Fixed a bug where a disabled extruder was used
-- Fixed a bug where the aborted state was not reflected correctly in Monitor view
-- Fixed a bug in Pause at Height where it stops extruding
-- Fixed a bug where support blockers were included in the bounding box after loading a project file
-- Fixed a bug where grouped models become unslicable if the first extruder was disabled
-- Fixed a bug in Tree Support where the Z Distance was too big
-- Prevented QT plug-ins from being loaded from an insecure directory if an environment variable is set
-
-* Printer definitions, profiles and materials:
-- Add Eazao Zero printer definition, contributed by Hogan-Polaris
-- Add XYZprinting printer definitions, contributed by heed818
-
-[4.12.1]
-* Bug fixes
-- Updated Shapely to version 1.8.0 which, among other things, fixes multiplying objects on MacOS Monterey
-- Fixed a bug in Lightning infill where the infill was printed multiple times under certain circumstances
-
-[4.12.0]
-For an overview of the new features in Cura 4.12, please watch our video.
-
-* Lightning infill
-The new lightning infill setting lets you to print high-quality top layers but is optimized to use less material and increase your production speed. Special thanks to rburema and BagelOrb!
-
-* Improved top surface quality
-We’ve tweaked the Monotonic setting and made adjustments throughout Ultimaker print profiles. This removes occasional scarring on models and improves top surface quality by default.
-
-* Improved horizontal print quality
-Resulting in reduction of ringing, improving resolution and overall print quality.
-
-* App switcher
-The new switcher provides a simpler way to navigate and use other Ultimaker applications, including Ultimaker Digital Factory, Ultimaker Marketplace, and Ultimaker 3D Printing Academy. Reporting bugs to Github is now just one click away, and it’s easier to find the application you need.
-
-* Faster start-up
-We've shaved 10 seconds from Ultimaker Cura's start-up time by optimizing profile data caching.
-
-* Other new features:
-- Moved the skip button to the left bottom on the sign in onboarding page and replaced with the sign in button and Create new account
-- Add {material_type} and {material_name} as replacement patterns, contributed by fieldOfView
-- Update file name after saving
-- Make parking optional in all "methods" of Pause at Height, contributed by fieldOfView
-
-* Bug fixes:
-- Fixed a bug when combing goes through skin on Top Surface Skin Layers
-- Fixed a bug in one-at-a-time mode to not wait for initial layer bed temperature if the temperature stays the same
-- Fixed a bug where there was double infill and gap filling
-- Fixed a bug with monotonic ironing that causes fan speed jump to 255 for ironing pass
-- Fixed an engine crash when using monotonic ordering with zigzag skin pattern
-- Fixed missing commas in disallowed list for code injections, contributed by YuvalZilber
-- Fixed various typos, contributed by luzpaz
-- Fixed Filament Change Retract method
-- Fixed extra microsegments inserted from Wall Overlap Computation
-- Fixed inconsistent material name in the header and material selection dropdown
-- Fixed scaling model down after scaling it up with tool handles
-- Fixed single instance option when opening different files
-- Fixed duplicating and multiplying support blockers
-- Fixed a bug where a random 0 was added in end g-code
-- Fixed a bug in Tree support in the global and per object settings
-- Fixed a bug where special characters in configuration files caused a crash
-- Fixed a bug where infill goes through skin
-- Fixed a bug where ironing doesn't listen to combing mode
-- Fixed a bug related to the translations in the monitor tab
-
-* Printer definitions, profiles and materials:
-- Added Creasee CS50S pro, Creasee Skywalker and Creasee Phoenix printer definitions, contributed by ivovk9
-- Added Joyplace Cremaker M V1, M V2, S V1, contributed by hyu7000
-- Added Hellbot printer definitions, contributed by DevelopmentHellbot
-- Added Arjun Pro 300 printer definition, contributed by venkatkamesh
-- Added AtomStack printer definitions, contributed by zhpt
-- Added Weedo X40 printer definition, contributed by x40-Community
-- Added 3DI D300 printer definition, contributed by v27jain
-- Changed Crealiy Ender 5 Plus end g-code, contributed by mothnox
-- Updated definitions and extruders of Hellbot Magna 2 230/300 dual, contributed by DevelopmentHellbot
-- Updated Eryone Thinker printer profile, contributed by Eryone
-- Updated FLSUN Super Racer profiles, contritubed by Guilouz
-- Updated Mega S and X acceleration to firmware default, contributed by NilsRo
-
-* Known bugs with Lighting infill:
-- Connect infill polygons doesn't work
-- Infill Wipe Distance applies to every polyline
-- Infill mesh modifier density
-- Infill Overlap doesn't work
-- Infill before walls order doesn't respect the order when Lightning is enabled
-
-[4.11.0]
-For an overview of the new features in Cura 4.11, please watch our video.
-
-* Monotonic ordering
-The new Monotonic top/bottom order setting enables users to print parts with smoother top surfaces. This is especially useful for parts that need good aesthetics, such as visual prototypes. Or for parts that benefit from smooth surfaces, such as those that contact-sensitive components.
-
-* Complete UI refresh
-Look around and you will notice that we have refreshed over 100 icons throughout Ultimaker Cura. The new icons are designed for clarity – resulting in a simpler and more informative slicing experience. Also, when scaling the Ultimaker Cura window, the UI will adapt, resulting in less visual clutter.
-
-* Improved digital library integration
-Collaborative workflows using the Digital Library are now simpler. Every user with a cloud-connected Ultimaker 3D printer can access stored projects. And we have added a “Search” function to make finding files easier.
-
-* Save materials profiles to USB
-Users can now save all third-party material profiles to USB. This feature is for Ultimaker S-line printers only and is especially useful for cloud-connected (or offline) printers.
-
-* Notifications for beta and plugin releases
-Users can now set notification preferences to alert them to new Ultimaker Cura beta and plug-in releases.
-
-* Improve logging of errors in OAuth flow
-When helping a user with log-in problems it is easier to see where the OAuth flow goes wrong.
-
-* Search in the description in the settings visibility menu
-When searching in the settings visibility menu you will also search in the description of the settings.
-
-* Bug fixes:
-- Fixed the setting visibility button to make it easier to click
-- Inform the user that their webcam does not work because they are cloud connected
-- Inform the user that their webcam does not work if the firewall is enabled
-- Fixed a crash when pressing the slice button while context menu is opened
-- Support non-ASCII character in the Digital Library project name
-- Fixed integer underflow if print is less than half the initial layer height
-- Fixed a bug where infill mesh sometimes default to having walls or skin
-- Fix builds with Python 3.8, contributed by StefanBruens
-- Fix CC settings for PLA
-- Fixed memory leak in Zeroconf 0.25
-- Fixed connecting USB printing with detecting baud-rates, contributed by rrrlasse
-- Fixed crash when Cura crashes on exit
-- Fixed a bug where the infill goes through walls
-- Fixed the version upgrade of preferences file
-- Fixed missing icons in deprecated icons list, contributed by fieldOfView
-- Fixed a crash in CuraEngine when the prime tower is placed in an invalid position
-- Fixed a bug when user is unable to sign in on Linux if a Keyring backend is installed
-- Fixed the rotation direction of the 90 degrees rotation arrows, contributed by fieldOfView
-
-* Printer definitions, profiles and materials:
-- Added SecKit SK-Tank, SK-Go printer definitions, contributed by SecKit
-- Added MP Mini Delta 2 printer definition, contributed by PurpleHullPeas
-- Added Kingroon K3P and K3PS printer definitions, contributed by NoTaMu
-- Added Eryone PLA, PLA Wood, PLA Matte and PETG 1.75mm profiles, contributed by dapostol73
-- Added BIQU BX printer definition, contributed by looxonline
-- Added FLSun Super race printer definitions, contributed by thushan
-- Added Atom 2.0 and Atom Plus printer definitions, contributed by lin-ycv
-- Added PBR 3D Gen-I printer definition, contributed by pbr-research
-- Added Creasee 3D printer definitions, contributed by ivovk9
-- Updated Strateo3D profiles, contributed by ChronosTech
-- Added Voron V0 printer definitions, contributed by jgehrig
-- Updated Liquid profiles, contributed by alexgrigoras
-- Added Farm 2 and Farm2CE printer definitions, contributed by saliery999
-- Added GooFoo and Renkforce print definitions and GooFoo materials, contributed by goofoo3d
-
-*From version 4.11 onwards - Ultimaker Cura is only supported on operating systems actively maintained by their software manufacturer or community. This means Windows 7 and MacOS 10.13 will no longer be supported. Technically this means Ultimaker will stop testing and developing for such operating systems. However, even though it is no longer supported, there is still a high likelihood the application keeps functioning.
-
-
-[4.10]
-
-The release notes of versions <= 4.10 can be found in our releases GitHub page.
+The release notes of versions <= 4.13 can be found in our releases GitHub page.