mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Merge remote-tracking branch 'origin/5.1' into CURA-9365_fix_building_cura_main
This commit is contained in:
commit
cd12d24584
306 changed files with 24 additions and 375 deletions
|
@ -34,61 +34,6 @@ class MaterialManagementModel(QObject):
|
||||||
def __init__(self, parent: Optional[QObject] = None) -> None:
|
def __init__(self, parent: Optional[QObject] = None) -> None:
|
||||||
super().__init__(parent = parent)
|
super().__init__(parent = parent)
|
||||||
self._material_sync = CloudMaterialSync(parent=self)
|
self._material_sync = CloudMaterialSync(parent=self)
|
||||||
self._checkIfNewMaterialsWereInstalled()
|
|
||||||
|
|
||||||
def _checkIfNewMaterialsWereInstalled(self) -> None:
|
|
||||||
"""
|
|
||||||
Checks whether new material packages were installed in the latest startup. If there were, then it shows
|
|
||||||
a message prompting the user to sync the materials with their printers.
|
|
||||||
"""
|
|
||||||
application = cura.CuraApplication.CuraApplication.getInstance()
|
|
||||||
for package_id, package_data in application.getPackageManager().getPackagesInstalledOnStartup().items():
|
|
||||||
if package_data["package_info"]["package_type"] == "material":
|
|
||||||
# At least one new material was installed
|
|
||||||
self._showSyncNewMaterialsMessage()
|
|
||||||
break
|
|
||||||
|
|
||||||
def _showSyncNewMaterialsMessage(self) -> None:
|
|
||||||
sync_materials_message = Message(
|
|
||||||
text = catalog.i18nc("@action:button",
|
|
||||||
"Please sync the material profiles with your printers before starting to print."),
|
|
||||||
title = catalog.i18nc("@action:button", "New materials installed"),
|
|
||||||
message_type = Message.MessageType.WARNING,
|
|
||||||
lifetime = 0
|
|
||||||
)
|
|
||||||
|
|
||||||
sync_materials_message.addAction(
|
|
||||||
"sync",
|
|
||||||
name = catalog.i18nc("@action:button", "Sync materials"),
|
|
||||||
icon = "",
|
|
||||||
description = "Sync your newly installed materials with your printers.",
|
|
||||||
button_align = Message.ActionButtonAlignment.ALIGN_RIGHT
|
|
||||||
)
|
|
||||||
|
|
||||||
sync_materials_message.addAction(
|
|
||||||
"learn_more",
|
|
||||||
name = catalog.i18nc("@action:button", "Learn more"),
|
|
||||||
icon = "",
|
|
||||||
description = "Learn more about syncing your newly installed materials with your printers.",
|
|
||||||
button_align = Message.ActionButtonAlignment.ALIGN_LEFT,
|
|
||||||
button_style = Message.ActionButtonStyle.LINK
|
|
||||||
)
|
|
||||||
sync_materials_message.actionTriggered.connect(self._onSyncMaterialsMessageActionTriggered)
|
|
||||||
|
|
||||||
# Show the message only if there are printers that support material export
|
|
||||||
container_registry = cura.CuraApplication.CuraApplication.getInstance().getContainerRegistry()
|
|
||||||
global_stacks = container_registry.findContainerStacks(type = "machine")
|
|
||||||
if any([stack.supportsMaterialExport for stack in global_stacks]):
|
|
||||||
sync_materials_message.show()
|
|
||||||
|
|
||||||
def _onSyncMaterialsMessageActionTriggered(self, sync_message: Message, sync_message_action: str):
|
|
||||||
if sync_message_action == "sync":
|
|
||||||
QDesktopServices.openUrl(QUrl("https://example.com/openSyncAllWindow"))
|
|
||||||
# self.openSyncAllWindow()
|
|
||||||
sync_message.hide()
|
|
||||||
elif sync_message_action == "learn_more":
|
|
||||||
QDesktopServices.openUrl(QUrl("https://support.ultimaker.com/hc/en-us/articles/360013137919?utm_source=cura&utm_medium=software&utm_campaign=sync-material-printer-message"))
|
|
||||||
|
|
||||||
|
|
||||||
@pyqtSlot("QVariant", result = bool)
|
@pyqtSlot("QVariant", result = bool)
|
||||||
def canMaterialBeRemoved(self, material_node: "MaterialNode") -> bool:
|
def canMaterialBeRemoved(self, material_node: "MaterialNode") -> bool:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2021 Ultimaker B.V.
|
# Copyright (c) 2022 Ultimaker B.V.
|
||||||
# Cura is released under the terms of the LGPLv3 or higher.
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
|
|
||||||
from PyQt6.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, QObject, QUrl
|
from PyQt6.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, QObject, QUrl
|
||||||
|
@ -18,6 +18,7 @@ if TYPE_CHECKING:
|
||||||
from UM.Signal import Signal
|
from UM.Signal import Signal
|
||||||
catalog = i18nCatalog("cura")
|
catalog = i18nCatalog("cura")
|
||||||
|
|
||||||
|
|
||||||
class CloudMaterialSync(QObject):
|
class CloudMaterialSync(QObject):
|
||||||
"""
|
"""
|
||||||
Handles the synchronisation of material profiles with cloud accounts.
|
Handles the synchronisation of material profiles with cloud accounts.
|
||||||
|
@ -44,7 +45,6 @@ class CloudMaterialSync(QObject):
|
||||||
break
|
break
|
||||||
|
|
||||||
def openSyncAllWindow(self):
|
def openSyncAllWindow(self):
|
||||||
|
|
||||||
self.reset()
|
self.reset()
|
||||||
|
|
||||||
if self.sync_all_dialog is None:
|
if self.sync_all_dialog is None:
|
||||||
|
|
|
@ -1253,12 +1253,12 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _parse_packages_metadata(archive: zipfile.ZipFile) -> List[Dict[str, str]]:
|
def _parse_packages_metadata(archive: zipfile.ZipFile) -> List[Dict[str, str]]:
|
||||||
try:
|
try:
|
||||||
package_metadata = json.loads(archive.open("Metadata/packages.json").read().decode("utf-8"))
|
package_metadata = json.loads(archive.open("Cura/packages.json").read().decode("utf-8"))
|
||||||
return package_metadata["packages"]
|
return package_metadata["packages"]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
Logger.warning("No package metadata was found in .3mf file.")
|
Logger.warning("No package metadata was found in .3mf file.")
|
||||||
except Exception:
|
except Exception:
|
||||||
Logger.error("Failed to load packes metadata from .3mf file")
|
Logger.error("Failed to load packages metadata from .3mf file.")
|
||||||
|
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ catalog = i18nCatalog("cura")
|
||||||
|
|
||||||
THUMBNAIL_PATH = "Metadata/thumbnail.png"
|
THUMBNAIL_PATH = "Metadata/thumbnail.png"
|
||||||
MODEL_PATH = "3D/3dmodel.model"
|
MODEL_PATH = "3D/3dmodel.model"
|
||||||
PACKAGE_METADATA_PATH = "Metadata/packages.json"
|
PACKAGE_METADATA_PATH = "Cura/packages.json"
|
||||||
|
|
||||||
class ThreeMFWriter(MeshWriter):
|
class ThreeMFWriter(MeshWriter):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
|
@ -31,7 +31,7 @@ UM.Dialog
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
||||||
text: catalog.i18nc("@action:label", "Height (mm)")
|
text: catalog.i18nc("@action:label", "Height (mm)")
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: peak_height_label
|
id: peak_height_label
|
||||||
|
@ -64,7 +64,7 @@ UM.Dialog
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
||||||
text: catalog.i18nc("@action:label", "Base (mm)")
|
text: catalog.i18nc("@action:label", "Base (mm)")
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
MouseArea
|
MouseArea
|
||||||
{
|
{
|
||||||
|
@ -98,7 +98,7 @@ UM.Dialog
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
||||||
text: catalog.i18nc("@action:label", "Width (mm)")
|
text: catalog.i18nc("@action:label", "Width (mm)")
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: width_label
|
id: width_label
|
||||||
|
@ -132,7 +132,7 @@ UM.Dialog
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
||||||
text: catalog.i18nc("@action:label", "Depth (mm)")
|
text: catalog.i18nc("@action:label", "Depth (mm)")
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: depth_label
|
id: depth_label
|
||||||
|
@ -166,7 +166,7 @@ UM.Dialog
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
||||||
text: ""
|
text: ""
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: lighter_is_higher_label
|
id: lighter_is_higher_label
|
||||||
|
@ -203,7 +203,7 @@ UM.Dialog
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
||||||
text: catalog.i18nc("@action:label", "Color Model")
|
text: catalog.i18nc("@action:label", "Color Model")
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: color_model_label
|
id: color_model_label
|
||||||
|
@ -240,7 +240,7 @@ UM.Dialog
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
||||||
text: catalog.i18nc("@action:label", "1mm Transmittance (%)")
|
text: catalog.i18nc("@action:label", "1mm Transmittance (%)")
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
id: transmittance_label
|
id: transmittance_label
|
||||||
|
@ -272,7 +272,7 @@ UM.Dialog
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
Layout.minimumWidth: UM.Theme.getSize("setting_control").width
|
||||||
text: catalog.i18nc("@action:label", "Smoothing")
|
text: catalog.i18nc("@action:label", "Smoothing")
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
MouseArea
|
MouseArea
|
||||||
{
|
{
|
||||||
|
|
|
@ -47,7 +47,7 @@ Item
|
||||||
Column
|
Column
|
||||||
{
|
{
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignTop
|
Layout.alignment: Qt.AlignTop
|
||||||
|
|
||||||
spacing: base.columnSpacing
|
spacing: base.columnSpacing
|
||||||
|
|
||||||
|
@ -176,7 +176,7 @@ Item
|
||||||
Column
|
Column
|
||||||
{
|
{
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignTop
|
Layout.alignment: Qt.AlignTop
|
||||||
|
|
||||||
spacing: base.columnSpacing
|
spacing: base.columnSpacing
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ UM.Dialog
|
||||||
font: UM.Theme.getFont("large")
|
font: UM.Theme.getFont("large")
|
||||||
anchors.verticalCenter: icon.verticalCenter
|
anchors.verticalCenter: icon.verticalCenter
|
||||||
height: UM.Theme.getSize("marketplace_large_icon").height
|
height: UM.Theme.getSize("marketplace_large_icon").height
|
||||||
verticalAlignment: Qt.AlignmentFlag.AlignVCenter
|
verticalAlignment: Qt.AlignVCenter
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ Item
|
||||||
property bool showInstallButton: false
|
property bool showInstallButton: false
|
||||||
property bool showUpdateButton: false
|
property bool showUpdateButton: false
|
||||||
|
|
||||||
property string missingPackageReadMoreUrl: "https://ultimaker.atlassian.net/wiki/spaces/SD/pages/1231916580/Campaign+links+from+Cura+to+the+Ultimaker+domain"
|
property string missingPackageReadMoreUrl: "https://support.ultimaker.com/hc/en-us/articles/360011968360-Using-the-Ultimaker-Marketplace?utm_source=cura&utm_medium=software&utm_campaign=load-file-material-missing"
|
||||||
|
|
||||||
|
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
|
|
@ -31,7 +31,7 @@ Item
|
||||||
|
|
||||||
Cura.SecondaryButton
|
Cura.SecondaryButton
|
||||||
{
|
{
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
Layout.preferredHeight: UM.Theme.getSize("action_button").height
|
Layout.preferredHeight: UM.Theme.getSize("action_button").height
|
||||||
Layout.preferredWidth: height
|
Layout.preferredWidth: height
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ Item
|
||||||
|
|
||||||
UM.Label
|
UM.Label
|
||||||
{
|
{
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
text: detailPage.title
|
text: detailPage.title
|
||||||
|
|
|
@ -87,7 +87,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.2 },
|
"wall_0_wipe_dist": { "value": 0.2 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": true },
|
|
||||||
|
|
||||||
"retraction_speed": {
|
"retraction_speed": {
|
||||||
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
||||||
|
|
|
@ -192,7 +192,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"retraction_speed": {
|
"retraction_speed": {
|
||||||
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
||||||
|
|
|
@ -97,7 +97,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"retraction_speed": {
|
"retraction_speed": {
|
||||||
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
||||||
|
|
|
@ -27,7 +27,6 @@
|
||||||
"infill_overlap": { "value": 15.0 },
|
"infill_overlap": { "value": 15.0 },
|
||||||
"skin_overlap": { "value": 20.0 },
|
"skin_overlap": { "value": 20.0 },
|
||||||
"fill_outline_gaps": { "value": true },
|
"fill_outline_gaps": { "value": true },
|
||||||
"filter_out_tiny_gaps": { "value": true },
|
|
||||||
"roofing_layer_count": { "value": 2 },
|
"roofing_layer_count": { "value": 2 },
|
||||||
"xy_offset_layer_0": { "value": -0.1 },
|
"xy_offset_layer_0": { "value": -0.1 },
|
||||||
"speed_print": { "value": 50 },
|
"speed_print": { "value": 50 },
|
||||||
|
|
|
@ -196,7 +196,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"retraction_speed": {
|
"retraction_speed": {
|
||||||
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
||||||
|
|
|
@ -175,7 +175,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
"top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3 if layer_height > 0.15 else 0.8" },
|
"top_bottom_thickness": { "value": "layer_height_0 + layer_height * 3 if layer_height > 0.15 else 0.8" },
|
||||||
"optimize_wall_printing_order": { "value": true },
|
"optimize_wall_printing_order": { "value": true },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"z_seam_type": { "value": "'sharpest_corner'" },
|
"z_seam_type": { "value": "'sharpest_corner'" },
|
||||||
"z_seam_corner": { "value": "'z_seam_corner_weighted'" },
|
"z_seam_corner": { "value": "'z_seam_corner_weighted'" },
|
||||||
|
|
|
@ -97,7 +97,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"retraction_speed": {
|
"retraction_speed": {
|
||||||
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
||||||
|
|
|
@ -91,7 +91,6 @@
|
||||||
"wall_0_inset": {"value": "0" },
|
"wall_0_inset": {"value": "0" },
|
||||||
"inset_direction": {"value": "'outside_in'" },
|
"inset_direction": {"value": "'outside_in'" },
|
||||||
"alternate_extra_perimeter": {"value": false },
|
"alternate_extra_perimeter": {"value": false },
|
||||||
"filter_out_tiny_gaps": {"value": true },
|
|
||||||
"fill_outline_gaps": {"value": true },
|
"fill_outline_gaps": {"value": true },
|
||||||
"z_seam_type": {"value": "'shortest'"},
|
"z_seam_type": {"value": "'shortest'"},
|
||||||
"z_seam_x": {"value": "300"},
|
"z_seam_x": {"value": "300"},
|
||||||
|
|
|
@ -207,7 +207,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"retraction_speed": {
|
"retraction_speed": {
|
||||||
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
||||||
|
|
|
@ -113,7 +113,6 @@
|
||||||
"minimum_interface_area": { "value": 10 },
|
"minimum_interface_area": { "value": 10 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"adhesion_type": { "value": "'skirt'" },
|
"adhesion_type": { "value": "'skirt'" },
|
||||||
"brim_replaces_support": { "value": false },
|
"brim_replaces_support": { "value": false },
|
||||||
|
|
|
@ -130,7 +130,6 @@
|
||||||
"minimum_interface_area": { "value": 10 },
|
"minimum_interface_area": { "value": 10 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"adhesion_type": { "value": "'skirt'" },
|
"adhesion_type": { "value": "'skirt'" },
|
||||||
"brim_replaces_support": { "value": false },
|
"brim_replaces_support": { "value": false },
|
||||||
|
|
|
@ -131,7 +131,6 @@
|
||||||
"minimum_interface_area": { "value": 10 },
|
"minimum_interface_area": { "value": 10 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"adhesion_type": { "value": "'skirt'" },
|
"adhesion_type": { "value": "'skirt'" },
|
||||||
"brim_replaces_support": { "value": false },
|
"brim_replaces_support": { "value": false },
|
||||||
|
|
|
@ -97,7 +97,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"retraction_amount": { "default_value": 5 },
|
"retraction_amount": { "default_value": 5 },
|
||||||
"retraction_speed": {
|
"retraction_speed": {
|
||||||
|
|
|
@ -51,7 +51,6 @@
|
||||||
"optimize_wall_printing_order": {"value": false },
|
"optimize_wall_printing_order": {"value": false },
|
||||||
"inset_direction": {"value": "'inside_out'" },
|
"inset_direction": {"value": "'inside_out'" },
|
||||||
"alternate_extra_perimeter": {"value": false },
|
"alternate_extra_perimeter": {"value": false },
|
||||||
"filter_out_tiny_gaps": {"value": true },
|
|
||||||
"fill_outline_gaps": {"value": true },
|
"fill_outline_gaps": {"value": true },
|
||||||
"xy_offset": {"value": 0},
|
"xy_offset": {"value": 0},
|
||||||
"skin_no_small_gaps_heuristic": {"value": true },
|
"skin_no_small_gaps_heuristic": {"value": true },
|
||||||
|
|
|
@ -194,7 +194,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"retraction_speed": {
|
"retraction_speed": {
|
||||||
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
"maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
|
||||||
|
|
|
@ -150,9 +150,6 @@
|
||||||
"fill_outline_gaps": {
|
"fill_outline_gaps": {
|
||||||
"default_value": false
|
"default_value": false
|
||||||
},
|
},
|
||||||
"filter_out_tiny_gaps": {
|
|
||||||
"default_value": false
|
|
||||||
},
|
|
||||||
"retraction_hop": {
|
"retraction_hop": {
|
||||||
"default_value": 0.2
|
"default_value": 0.2
|
||||||
},
|
},
|
||||||
|
|
|
@ -84,7 +84,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": true },
|
"fill_outline_gaps": { "value": true },
|
||||||
"filter_out_tiny_gaps": { "value": true },
|
|
||||||
|
|
||||||
"retraction_speed": {
|
"retraction_speed": {
|
||||||
"maximum_value_warning": "machine_max_feedrate_e",
|
"maximum_value_warning": "machine_max_feedrate_e",
|
||||||
|
@ -100,7 +99,6 @@
|
||||||
"maximum_value": 200
|
"maximum_value": 200
|
||||||
},
|
},
|
||||||
|
|
||||||
"retraction_hop_enabled": { "value": "True" },
|
|
||||||
"retraction_hop": { "value": 0.2 },
|
"retraction_hop": { "value": 0.2 },
|
||||||
"retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" },
|
"retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" },
|
||||||
"retraction_combing_max_distance": { "value": 30 },
|
"retraction_combing_max_distance": { "value": 30 },
|
||||||
|
|
|
@ -64,7 +64,6 @@
|
||||||
"wall_0_wipe_dist": { "value": 0.0 },
|
"wall_0_wipe_dist": { "value": 0.0 },
|
||||||
|
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
|
|
||||||
"retraction_hop_enabled": { "value": "False" },
|
"retraction_hop_enabled": { "value": "False" },
|
||||||
"retraction_hop": { "value": 0.2 },
|
"retraction_hop": { "value": 0.2 },
|
||||||
|
|
|
@ -211,7 +211,6 @@
|
||||||
"cool_fan_speed_max": { "value": "100" },
|
"cool_fan_speed_max": { "value": "100" },
|
||||||
"cool_min_speed": { "value": "7" },
|
"cool_min_speed": { "value": "7" },
|
||||||
"fill_outline_gaps": { "value": false },
|
"fill_outline_gaps": { "value": false },
|
||||||
"filter_out_tiny_gaps": { "value": false },
|
|
||||||
"infill_line_width": { "value": "round(line_width * 0.42 / 0.35, 2)" },
|
"infill_line_width": { "value": "round(line_width * 0.42 / 0.35, 2)" },
|
||||||
"infill_overlap": { "value": 30.0 },
|
"infill_overlap": { "value": 30.0 },
|
||||||
"infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
|
"infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
|
||||||
|
|
|
@ -402,7 +402,7 @@ Window
|
||||||
UM.Label
|
UM.Label
|
||||||
{
|
{
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
text: catalog.i18nc("@text Asking the user whether printers are missing in a list.", "Printers missing?")
|
text: catalog.i18nc("@text Asking the user whether printers are missing in a list.", "Printers missing?")
|
||||||
+ "\n"
|
+ "\n"
|
||||||
+ catalog.i18nc("@text", "Make sure all your printers are turned ON and connected to Digital Factory.")
|
+ catalog.i18nc("@text", "Make sure all your printers are turned ON and connected to Digital Factory.")
|
||||||
|
@ -413,7 +413,7 @@ Window
|
||||||
Cura.SecondaryButton
|
Cura.SecondaryButton
|
||||||
{
|
{
|
||||||
id: refreshListButton
|
id: refreshListButton
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
text: catalog.i18nc("@button", "Refresh List")
|
text: catalog.i18nc("@button", "Refresh List")
|
||||||
iconSource: UM.Theme.getIcon("ArrowDoubleCircleRight")
|
iconSource: UM.Theme.getIcon("ArrowDoubleCircleRight")
|
||||||
onClicked: Cura.API.account.sync(true)
|
onClicked: Cura.API.account.sync(true)
|
||||||
|
|
|
@ -65,7 +65,7 @@ Item
|
||||||
|
|
||||||
Rectangle
|
Rectangle
|
||||||
{
|
{
|
||||||
Layout.alignment: Qt.AlignmentFlag.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
color: UM.Theme.getColor("viewport_overlay")
|
color: UM.Theme.getColor("viewport_overlay")
|
||||||
width: whatsNewViewport.width
|
width: whatsNewViewport.width
|
||||||
height: whatsNewViewport.height
|
height: whatsNewViewport.height
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.3
|
layer_height = 0.3
|
||||||
layer_height_0 = 0.3
|
layer_height_0 = 0.3
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.1
|
layer_height = 0.1
|
||||||
layer_height_0 = 0.1
|
layer_height_0 = 0.1
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.2
|
layer_height = 0.2
|
||||||
layer_height_0 = 0.2
|
layer_height_0 = 0.2
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -27,7 +27,6 @@ jerk_print = 8
|
||||||
jerk_travel = 10
|
jerk_travel = 10
|
||||||
layer_height = 0.3
|
layer_height = 0.3
|
||||||
layer_height_0 = 0.3
|
layer_height_0 = 0.3
|
||||||
material_diameter = 1.75
|
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
retraction_amount = 6
|
retraction_amount = 6
|
||||||
retraction_hop = 0.075
|
retraction_hop = 0.075
|
||||||
|
|
|
@ -27,7 +27,6 @@ jerk_print = 8
|
||||||
jerk_travel = 10
|
jerk_travel = 10
|
||||||
layer_height = 0.1
|
layer_height = 0.1
|
||||||
layer_height_0 = 0.1
|
layer_height_0 = 0.1
|
||||||
material_diameter = 1.75
|
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
retraction_amount = 6
|
retraction_amount = 6
|
||||||
retraction_hop = 0.075
|
retraction_hop = 0.075
|
||||||
|
|
|
@ -27,7 +27,6 @@ jerk_print = 8
|
||||||
jerk_travel = 10
|
jerk_travel = 10
|
||||||
layer_height = 0.2
|
layer_height = 0.2
|
||||||
layer_height_0 = 0.2
|
layer_height_0 = 0.2
|
||||||
material_diameter = 1.75
|
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
retraction_amount = 6
|
retraction_amount = 6
|
||||||
retraction_hop = 0.075
|
retraction_hop = 0.075
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.10
|
layer_height = 0.10
|
||||||
layer_height_0 = 0.20
|
layer_height_0 = 0.20
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 210
|
material_print_temperature = 210
|
||||||
material_print_temperature_layer_0 = 210
|
material_print_temperature_layer_0 = 210
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.2
|
layer_height = 0.2
|
||||||
layer_height_0 = 0.3
|
layer_height_0 = 0.3
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 210
|
material_print_temperature = 210
|
||||||
material_print_temperature_layer_0 = 210
|
material_print_temperature_layer_0 = 210
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.30
|
layer_height = 0.30
|
||||||
layer_height_0 = 0.40
|
layer_height_0 = 0.40
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 210
|
material_print_temperature = 210
|
||||||
material_print_temperature_layer_0 = 210
|
material_print_temperature_layer_0 = 210
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.4
|
layer_height = 0.4
|
||||||
layer_height_0 = 0.4
|
layer_height_0 = 0.4
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 210
|
material_print_temperature = 210
|
||||||
material_print_temperature_layer_0 = 210
|
material_print_temperature_layer_0 = 210
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.08
|
layer_height = 0.08
|
||||||
layer_height_0 = 0.12
|
layer_height_0 = 0.12
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.12
|
layer_height = 0.12
|
||||||
layer_height_0 = 0.16
|
layer_height_0 = 0.16
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -19,7 +19,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.16
|
layer_height = 0.16
|
||||||
layer_height_0 = 0.2
|
layer_height_0 = 0.2
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.2
|
layer_height = 0.2
|
||||||
layer_height_0 = 0.28
|
layer_height_0 = 0.28
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.28
|
layer_height = 0.28
|
||||||
layer_height_0 = 0.32
|
layer_height_0 = 0.32
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.32
|
layer_height = 0.32
|
||||||
layer_height_0 = 0.32
|
layer_height_0 = 0.32
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.4
|
layer_height = 0.4
|
||||||
layer_height_0 = 0.4
|
layer_height_0 = 0.4
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 205
|
material_print_temperature = 205
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -18,7 +18,6 @@ cool_fan_speed_0 = 0
|
||||||
layer_height = 0.48
|
layer_height = 0.48
|
||||||
layer_height_0 = 0.48
|
layer_height_0 = 0.48
|
||||||
material_bed_temperature = 40
|
material_bed_temperature = 40
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 205
|
material_print_temperature = 205
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
|
|
|
@ -30,7 +30,6 @@ retraction_combing = off
|
||||||
retraction_amount = 0.75
|
retraction_amount = 0.75
|
||||||
retraction_speed = 70
|
retraction_speed = 70
|
||||||
material_flow = 98
|
material_flow = 98
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
support_use_towers = False
|
support_use_towers = False
|
||||||
support_z_distance = 0.2
|
support_z_distance = 0.2
|
||||||
|
|
|
@ -30,7 +30,6 @@ retraction_combing = off
|
||||||
retraction_amount = 0.75
|
retraction_amount = 0.75
|
||||||
retraction_speed = 70
|
retraction_speed = 70
|
||||||
material_flow = 98
|
material_flow = 98
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
support_use_towers = False
|
support_use_towers = False
|
||||||
support_z_distance = 0.2
|
support_z_distance = 0.2
|
||||||
|
|
|
@ -30,7 +30,6 @@ retraction_combing = off
|
||||||
retraction_amount = 0.75
|
retraction_amount = 0.75
|
||||||
retraction_speed = 70
|
retraction_speed = 70
|
||||||
material_flow = 98
|
material_flow = 98
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
support_use_towers = False
|
support_use_towers = False
|
||||||
support_z_distance = 0.2
|
support_z_distance = 0.2
|
||||||
|
|
|
@ -29,7 +29,6 @@ retraction_combing = off
|
||||||
retraction_amount = 0.75
|
retraction_amount = 0.75
|
||||||
retraction_speed = 70
|
retraction_speed = 70
|
||||||
material_flow = 98
|
material_flow = 98
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
support_use_towers = False
|
support_use_towers = False
|
||||||
support_z_distance = 0.2
|
support_z_distance = 0.2
|
||||||
|
|
|
@ -30,7 +30,6 @@ retraction_combing = off
|
||||||
retraction_amount = 0.75
|
retraction_amount = 0.75
|
||||||
retraction_speed = 70
|
retraction_speed = 70
|
||||||
material_flow = 98
|
material_flow = 98
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
support_use_towers = False
|
support_use_towers = False
|
||||||
support_z_distance = 0.2
|
support_z_distance = 0.2
|
||||||
|
|
|
@ -30,7 +30,6 @@ retraction_combing = off
|
||||||
retraction_amount = 0.75
|
retraction_amount = 0.75
|
||||||
retraction_speed = 70
|
retraction_speed = 70
|
||||||
material_flow = 98
|
material_flow = 98
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
support_use_towers = False
|
support_use_towers = False
|
||||||
support_z_distance = 0.2
|
support_z_distance = 0.2
|
||||||
|
|
|
@ -30,7 +30,6 @@ retraction_combing = off
|
||||||
retraction_amount = 0.75
|
retraction_amount = 0.75
|
||||||
retraction_speed = 70
|
retraction_speed = 70
|
||||||
material_flow = 98
|
material_flow = 98
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
support_use_towers = False
|
support_use_towers = False
|
||||||
support_z_distance = 0.2
|
support_z_distance = 0.2
|
||||||
|
|
|
@ -29,7 +29,6 @@ retraction_combing = off
|
||||||
retraction_amount = 0.75
|
retraction_amount = 0.75
|
||||||
retraction_speed = 70
|
retraction_speed = 70
|
||||||
material_flow = 98
|
material_flow = 98
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
support_use_towers = False
|
support_use_towers = False
|
||||||
support_z_distance = 0.2
|
support_z_distance = 0.2
|
||||||
|
|
|
@ -11,7 +11,6 @@ weight = 3
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
material_diameter = 1.75
|
|
||||||
speed_print = 40
|
speed_print = 40
|
||||||
speed_topbottom = 30
|
speed_topbottom = 30
|
||||||
speed_wall_0 = 35
|
speed_wall_0 = 35
|
||||||
|
|
|
@ -11,7 +11,6 @@ weight = 2
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
material_diameter = 1.75
|
|
||||||
speed_print = 40
|
speed_print = 40
|
||||||
speed_topbottom = 30
|
speed_topbottom = 30
|
||||||
speed_wall_0 = 35
|
speed_wall_0 = 35
|
||||||
|
|
|
@ -11,7 +11,6 @@ weight = 3
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
material_diameter = 1.75
|
|
||||||
speed_print = 40
|
speed_print = 40
|
||||||
speed_topbottom = 30
|
speed_topbottom = 30
|
||||||
speed_wall_0 = 35
|
speed_wall_0 = 35
|
||||||
|
|
|
@ -11,7 +11,6 @@ weight = 3
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
|
|
||||||
[values]
|
[values]
|
||||||
material_diameter = 1.75
|
|
||||||
speed_print = 40
|
speed_print = 40
|
||||||
speed_topbottom = 30
|
speed_topbottom = 30
|
||||||
speed_wall_0 = 35
|
speed_wall_0 = 35
|
||||||
|
|
|
@ -24,7 +24,6 @@ speed_travel = 120
|
||||||
|
|
||||||
material_print_temperature = 246
|
material_print_temperature = 246
|
||||||
material_bed_temperature = 85
|
material_bed_temperature = 85
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 50
|
retraction_speed = 50
|
||||||
retraction_amount = 1.5
|
retraction_amount = 1.5
|
||||||
|
|
|
@ -24,7 +24,6 @@ speed_travel = 120
|
||||||
|
|
||||||
material_print_temperature = 246
|
material_print_temperature = 246
|
||||||
material_bed_temperature = 85
|
material_bed_temperature = 85
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 50
|
retraction_speed = 50
|
||||||
retraction_amount = 1.5
|
retraction_amount = 1.5
|
||||||
|
|
|
@ -24,7 +24,6 @@ speed_travel = 120
|
||||||
|
|
||||||
material_print_temperature = 246
|
material_print_temperature = 246
|
||||||
material_bed_temperature = 85
|
material_bed_temperature = 85
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 50
|
retraction_speed = 50
|
||||||
retraction_amount = 1.5
|
retraction_amount = 1.5
|
||||||
|
|
|
@ -24,7 +24,6 @@ speed_travel = 120
|
||||||
|
|
||||||
material_print_temperature = 246
|
material_print_temperature = 246
|
||||||
material_bed_temperature = 85
|
material_bed_temperature = 85
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 50
|
retraction_speed = 50
|
||||||
retraction_amount = 1.5
|
retraction_amount = 1.5
|
||||||
|
|
|
@ -24,7 +24,6 @@ speed_travel = 120
|
||||||
|
|
||||||
material_print_temperature = 246
|
material_print_temperature = 246
|
||||||
material_bed_temperature = 85
|
material_bed_temperature = 85
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 50
|
retraction_speed = 50
|
||||||
retraction_amount = 1.5
|
retraction_amount = 1.5
|
||||||
|
|
|
@ -18,7 +18,6 @@ speed_print = 60
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -18,7 +18,6 @@ speed_print = 30
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -18,7 +18,6 @@ speed_print = 40
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -18,7 +18,6 @@ speed_print = 60
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -18,7 +18,6 @@ speed_print = 50
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -17,7 +17,6 @@ adhesion_type = raft
|
||||||
speed_print = 60
|
speed_print = 60
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -23,7 +23,6 @@ speed_topbottom = =math.ceil(speed_print * 20 / 40)
|
||||||
speed_travel = 120
|
speed_travel = 120
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -23,7 +23,6 @@ speed_topbottom = =math.ceil(speed_print * 30 / 50)
|
||||||
speed_travel = 120
|
speed_travel = 120
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -17,7 +17,6 @@ adhesion_type = raft
|
||||||
speed_print = 60
|
speed_print = 60
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -23,7 +23,6 @@ speed_topbottom = =math.ceil(speed_print * 20 / 60)
|
||||||
speed_travel = 120
|
speed_travel = 120
|
||||||
|
|
||||||
material_print_temperature = 214
|
material_print_temperature = 214
|
||||||
material_diameter = 1.75
|
|
||||||
|
|
||||||
retraction_speed = 40
|
retraction_speed = 40
|
||||||
retraction_amount = 2.15
|
retraction_amount = 2.15
|
||||||
|
|
|
@ -46,7 +46,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -45,7 +45,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -45,7 +45,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -47,7 +47,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -44,7 +44,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -47,7 +47,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -46,7 +46,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -45,7 +45,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -45,7 +45,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -45,7 +45,6 @@ gradual_infill_steps = 0
|
||||||
infill_before_walls = False
|
infill_before_walls = False
|
||||||
infill_support_enabled = False
|
infill_support_enabled = False
|
||||||
max_skin_angle_for_expansion = 90
|
max_skin_angle_for_expansion = 90
|
||||||
material_diameter = 1.75
|
|
||||||
default_material_print_temperature = 220
|
default_material_print_temperature = 220
|
||||||
material_print_temperature = 220
|
material_print_temperature = 220
|
||||||
material_print_temperature_layer_0 = 220
|
material_print_temperature_layer_0 = 220
|
||||||
|
|
|
@ -14,7 +14,6 @@ global_quality = True
|
||||||
brim_width = 4.0
|
brim_width = 4.0
|
||||||
infill_pattern = zigzag
|
infill_pattern = zigzag
|
||||||
layer_height = 0.3
|
layer_height = 0.3
|
||||||
material_diameter = 1.75
|
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_support = 30
|
speed_support = 30
|
||||||
|
|
|
@ -14,7 +14,6 @@ global_quality = True
|
||||||
brim_width = 4.0
|
brim_width = 4.0
|
||||||
infill_pattern = zigzag
|
infill_pattern = zigzag
|
||||||
layer_height = 0.1
|
layer_height = 0.1
|
||||||
material_diameter = 1.75
|
|
||||||
speed_infill = =speed_print
|
speed_infill = =speed_print
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_support = 30
|
speed_support = 30
|
||||||
|
|
|
@ -14,7 +14,6 @@ global_quality = True
|
||||||
brim_width = 4.0
|
brim_width = 4.0
|
||||||
infill_pattern = zigzag
|
infill_pattern = zigzag
|
||||||
layer_height = 0.2
|
layer_height = 0.2
|
||||||
material_diameter = 1.75
|
|
||||||
speed_infill = =math.ceil(speed_print * 60 / 50)
|
speed_infill = =math.ceil(speed_print * 60 / 50)
|
||||||
speed_print = 50
|
speed_print = 50
|
||||||
speed_support = 30
|
speed_support = 30
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.3
|
layer_height = 0.3
|
||||||
layer_height_0 = 0.3
|
layer_height_0 = 0.3
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.1
|
layer_height = 0.1
|
||||||
layer_height_0 = 0.1
|
layer_height_0 = 0.1
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.2
|
layer_height = 0.2
|
||||||
layer_height_0 = 0.2
|
layer_height_0 = 0.2
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.3
|
layer_height = 0.3
|
||||||
layer_height_0 = 0.3
|
layer_height_0 = 0.3
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.1
|
layer_height = 0.1
|
||||||
layer_height_0 = 0.1
|
layer_height_0 = 0.1
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.2
|
layer_height = 0.2
|
||||||
layer_height_0 = 0.2
|
layer_height_0 = 0.2
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.3
|
layer_height = 0.3
|
||||||
layer_height_0 = 0.3
|
layer_height_0 = 0.3
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
retraction_amount = 6
|
retraction_amount = 6
|
||||||
retraction_hop = 0.075
|
retraction_hop = 0.075
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.1
|
layer_height = 0.1
|
||||||
layer_height_0 = 0.1
|
layer_height_0 = 0.1
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
retraction_amount = 6
|
retraction_amount = 6
|
||||||
retraction_hop = 0.075
|
retraction_hop = 0.075
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.2
|
layer_height = 0.2
|
||||||
layer_height_0 = 0.2
|
layer_height_0 = 0.2
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
retraction_amount = 6
|
retraction_amount = 6
|
||||||
retraction_hop = 0.075
|
retraction_hop = 0.075
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.3
|
layer_height = 0.3
|
||||||
layer_height_0 = 0.3
|
layer_height_0 = 0.3
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.1
|
layer_height = 0.1
|
||||||
layer_height_0 = 0.1
|
layer_height_0 = 0.1
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
|
@ -29,7 +29,6 @@ jerk_travel = 10
|
||||||
layer_height = 0.2
|
layer_height = 0.2
|
||||||
layer_height_0 = 0.2
|
layer_height_0 = 0.2
|
||||||
material_bed_temperature = 60
|
material_bed_temperature = 60
|
||||||
material_diameter = 1.75
|
|
||||||
material_print_temperature = 200
|
material_print_temperature = 200
|
||||||
material_print_temperature_layer_0 = 0
|
material_print_temperature_layer_0 = 0
|
||||||
retract_at_layer_change = False
|
retract_at_layer_change = False
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue