From d0654aa4d04deefe66e0733467b3848d0b45e1f9 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 26 Jul 2021 13:35:36 +0200 Subject: [PATCH 01/16] Add option to preference to switch between stable & beta for update checker CURA-7689 --- resources/qml/Preferences/GeneralPage.qml | 38 ++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 341b51c8b4..e35b8c22f0 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -118,6 +118,8 @@ UM.PreferencesPage sendDataCheckbox.checked = boolCheck(UM.Preferences.getValue("info/send_slice_info")) UM.Preferences.resetPreference("info/automatic_update_check") checkUpdatesCheckbox.checked = boolCheck(UM.Preferences.getValue("info/automatic_update_check")) + + UM.Preferences.resetPreference("info/latest_update_source") } ScrollView @@ -774,7 +776,7 @@ UM.PreferencesPage { width: childrenRect.width height: visible ? childrenRect.height : 0 - text: catalog.i18nc("@info:tooltip","Should Cura check for updates when the program is started?") + text: catalog.i18nc("@info:tooltip", "Should Cura check for updates when the program is started?") CheckBox { @@ -785,6 +787,40 @@ UM.PreferencesPage } } + ExclusiveGroup { id: curaUpdatesGroup } + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + text: catalog.i18nc("@info:tooltip", "When checking for updates, only check for stable releases.") + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + RadioButton + { + text: catalog.i18nc("@option:radio", "Stable releases only") + exclusiveGroup: curaUpdatesGroup + enabled: checkUpdatesCheckbox.checked + checked: UM.Preferences.getValue("info/latest_update_source") == "stable" + onClicked: UM.Preferences.setValue("info/latest_update_source", "stable") + } + } + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + text: catalog.i18nc("@info:tooltip", "When checking for updates, check for both stable and for beta releases.") + anchors.left: parent.left + anchors.leftMargin: UM.Theme.getSize("default_margin").width + RadioButton + { + text: catalog.i18nc("@option:radio", "Stable and Beta releases") + exclusiveGroup: curaUpdatesGroup + enabled: checkUpdatesCheckbox.checked + checked: UM.Preferences.getValue("info/latest_update_source") == "beta" + onClicked: UM.Preferences.setValue("info/latest_update_source", "beta") + } + } + UM.TooltipArea { width: childrenRect.width From b7661659ae3e53b6f06d1978a248ed22febfecb8 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 28 Jul 2021 16:46:17 +0200 Subject: [PATCH 02/16] Add setting for monotonic skin order Just a simple boolean setting for the skin now. Top surface and ironing will follow later. Contributes to issue CURA-7928. --- resources/definitions/fdmprinter.def.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index dca63aaa5e..c9b91647d3 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1519,6 +1519,16 @@ "limit_to_extruder": "top_bottom_extruder_nr", "settable_per_mesh": true }, + "skin_monotonic": + { + "label": "Monotonic Top/Bottom Order", + "description": "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent.", + "type": "bool", + "default_value": false, + "enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'", + "limit_to_extruder": "top_bottom_extruder_nr", + "settable_per_mesh": true + }, "skin_angles": { "label": "Top/Bottom Line Directions", From 01c4a0f72d59b2ad28922bfd09de875ee9d48648 Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Wed, 28 Jul 2021 16:55:36 +0200 Subject: [PATCH 03/16] Change warning icon background to the CircleSolid.svg CURA-8439 --- .../ConfigurationListView.qml | 29 ++++++++++++++----- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml index afedafa9c2..de74eb469a 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml @@ -28,20 +28,32 @@ Item { width: parent.width visible: configurationList.model.length == 0 - height: label.height + UM.Theme.getSize("wide_margin").height + height: icon.height anchors.top: parent.top anchors.topMargin: UM.Theme.getSize("default_margin").height - - Rectangle + Item { id: icon - color: UM.Theme.getColor("warning") - width: UM.Theme.getSize("section_icon").width + width: visible ? UM.Theme.getSize("section_icon").width : 0 height: width - radius: width / 2 + anchors.verticalCenter: parent.verticalCenter UM.RecolorImage { - anchors.fill:parent + id: warningIconBackground + height: parent.height + width: parent.width + sourceSize.width: width + sourceSize.height: height + source: UM.Theme.getIcon("CircleSolid", "low") + color: UM.Theme.getColor("warning") + } + UM.RecolorImage + { + id: warningIcon + height: parent.height + width: parent.width + sourceSize.width: width + sourceSize.height: height source: UM.Theme.getIcon("Warning", "low") color: UM.Theme.getColor("message_warning_icon") } @@ -51,8 +63,9 @@ Item id: label anchors.left: icon.right anchors.right: parent.right + anchors.verticalCenter: parent.verticalCenter anchors.leftMargin: UM.Theme.getSize("default_margin").width - // There are two cases that we want to diferenciate, one is when Cura is loading the configurations and the + // There are two cases that we want to differenciate, one is when Cura is loading the configurations and the // other when the connection was lost text: Cura.MachineManager.printerConnected ? catalog.i18nc("@label", "Loading available configurations from the printer...") : From d41d68e6fab8f5af12fd8cb77af497d2487dd558 Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Wed, 28 Jul 2021 16:57:15 +0200 Subject: [PATCH 04/16] Replace warning icon in the unable to slice message With the new warning icon that has a solid background, similar to the warning icon used in the messages. CURA-8439 --- .../qml/ActionPanel/SliceProcessWidget.qml | 47 +++++++++++++++++-- 1 file changed, 42 insertions(+), 5 deletions(-) diff --git a/resources/qml/ActionPanel/SliceProcessWidget.qml b/resources/qml/ActionPanel/SliceProcessWidget.qml index 42df08560a..92b81f43cf 100644 --- a/resources/qml/ActionPanel/SliceProcessWidget.qml +++ b/resources/qml/ActionPanel/SliceProcessWidget.qml @@ -57,16 +57,53 @@ Column font: UM.Theme.getFont("default") renderType: Text.NativeRendering } - - Cura.IconWithText + Item { id: unableToSliceMessage width: parent.width visible: widget.backendState == UM.Backend.Error - text: catalog.i18nc("@label:PrintjobStatus", "Unable to slice") - source: UM.Theme.getIcon("Warning") - iconColor: UM.Theme.getColor("warning") + height: icon.height + Item + { + id: icon + anchors.verticalCenter: parent.verticalCenter + width: visible ? UM.Theme.getSize("section_icon").width : 0 + height: width + UM.RecolorImage + { + id: warningIconBackground + height: parent.height + width: parent.width + sourceSize.width: width + sourceSize.height: height + source: UM.Theme.getIcon("CircleSolid", "low") + color: UM.Theme.getColor("warning") + } + UM.RecolorImage + { + id: warningIcon + height: parent.height + width: parent.width + sourceSize.width: width + sourceSize.height: height + source: UM.Theme.getIcon("Warning", "low") + color: UM.Theme.getColor("message_warning_icon") + } + } + Label + { + id: label + anchors.left: icon.right + anchors.right: parent.right + anchors.verticalCenter: parent.verticalCenter + anchors.leftMargin: UM.Theme.getSize("default_margin").width + text: catalog.i18nc("@label:PrintjobStatus", "Unable to slice") + color: UM.Theme.getColor("text") + font: UM.Theme.getFont("default") + renderType: Text.NativeRendering + wrapMode: Text.WordWrap + } } // Progress bar, only visible when the backend is in the process of slice the printjob From 83fe65b8ebb5924fcdeafac855efc3e7b820fca9 Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Wed, 28 Jul 2021 18:17:54 +0200 Subject: [PATCH 05/16] Use the StatusIcon qml component for the warning icons CURA-8349 --- .../qml/ActionPanel/SliceProcessWidget.qml | 31 ++++--------------- .../ConfigurationListView.qml | 25 ++------------- 2 files changed, 9 insertions(+), 47 deletions(-) diff --git a/resources/qml/ActionPanel/SliceProcessWidget.qml b/resources/qml/ActionPanel/SliceProcessWidget.qml index 92b81f43cf..99d78537c3 100644 --- a/resources/qml/ActionPanel/SliceProcessWidget.qml +++ b/resources/qml/ActionPanel/SliceProcessWidget.qml @@ -6,7 +6,7 @@ import QtQuick.Controls 2.1 import QtQuick.Layouts 1.3 import QtQuick.Controls 1.4 as Controls1 -import UM 1.3 as UM +import UM 1.4 as UM import Cura 1.0 as Cura @@ -63,38 +63,19 @@ Column width: parent.width visible: widget.backendState == UM.Backend.Error - height: icon.height - Item + height: warningIcon.height + UM.StatusIcon { - id: icon + id: warningIcon anchors.verticalCenter: parent.verticalCenter width: visible ? UM.Theme.getSize("section_icon").width : 0 height: width - UM.RecolorImage - { - id: warningIconBackground - height: parent.height - width: parent.width - sourceSize.width: width - sourceSize.height: height - source: UM.Theme.getIcon("CircleSolid", "low") - color: UM.Theme.getColor("warning") - } - UM.RecolorImage - { - id: warningIcon - height: parent.height - width: parent.width - sourceSize.width: width - sourceSize.height: height - source: UM.Theme.getIcon("Warning", "low") - color: UM.Theme.getColor("message_warning_icon") - } + status: UM.StatusIcon.Status.WARNING } Label { id: label - anchors.left: icon.right + anchors.left: warningIcon.right anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter anchors.leftMargin: UM.Theme.getSize("default_margin").width diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml index de74eb469a..75ae18a593 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml @@ -4,7 +4,7 @@ import QtQuick 2.7 import QtQuick.Controls 2.3 -import UM 1.2 as UM +import UM 1.4 as UM import Cura 1.0 as Cura Item @@ -31,32 +31,13 @@ Item height: icon.height anchors.top: parent.top anchors.topMargin: UM.Theme.getSize("default_margin").height - Item + UM.StatusIcon { id: icon width: visible ? UM.Theme.getSize("section_icon").width : 0 height: width anchors.verticalCenter: parent.verticalCenter - UM.RecolorImage - { - id: warningIconBackground - height: parent.height - width: parent.width - sourceSize.width: width - sourceSize.height: height - source: UM.Theme.getIcon("CircleSolid", "low") - color: UM.Theme.getColor("warning") - } - UM.RecolorImage - { - id: warningIcon - height: parent.height - width: parent.width - sourceSize.width: width - sourceSize.height: height - source: UM.Theme.getIcon("Warning", "low") - color: UM.Theme.getColor("message_warning_icon") - } + status: UM.StatusIcon.Status.WARNING } Label { From 358ba8c34a26db498a9d9367bb1e4b703c9f7648 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 29 Jul 2021 11:35:48 +0200 Subject: [PATCH 06/16] Update update message for firmware checker CURA-7689 --- plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py b/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py index ca253e3ec6..493784c6d1 100644 --- a/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py +++ b/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py @@ -14,12 +14,12 @@ class FirmwareUpdateCheckerMessage(Message): def __init__(self, machine_id: int, machine_name: str, latest_version: str, download_url: str) -> None: super().__init__(i18n_catalog.i18nc( "@info Don't translate {machine_name}, since it gets replaced by a printer name!", - "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, " + "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, " "it is recommended to update the firmware on your printer to version {latest_version}.").format( machine_name = machine_name, latest_version = latest_version), title = i18n_catalog.i18nc( "@info:title The %s gets replaced with the printer name.", - "New %s firmware available") % machine_name) + "New %s stable firmware available") % machine_name) self._machine_id = machine_id self._download_url = download_url From 3436a2171e4f981f126d9d1362b40aa9ee5c9ea7 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 29 Jul 2021 11:40:11 +0200 Subject: [PATCH 07/16] Remove unneeded () CURA-7689 --- plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py b/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py index 2c869195bc..d726cc04a9 100644 --- a/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py +++ b/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py @@ -112,7 +112,7 @@ class FirmwareUpdateCheckerJob(Job): # The first time we want to store the current version, the notification will not be shown, # because the new version of Cura will be release before the firmware and we don't want to # notify the user when no new firmware version is available. - if (checked_version != "") and (checked_version != current_version): + if checked_version != "" and checked_version != current_version: Logger.log("i", "Showing firmware update message for new version: {version}".format(version = current_version)) message = FirmwareUpdateCheckerMessage(machine_id, self._machine_name, current_version, self._lookups.getRedirectUserUrl()) From 84b1aa39b7c7756ca8252d81b9106c5a28b0d470 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 29 Jul 2021 15:21:46 +0200 Subject: [PATCH 08/16] Update the update_url's for firmware updates CURA-7689 --- resources/definitions/ultimaker3.def.json | 2 +- resources/definitions/ultimaker3_extended.def.json | 2 +- resources/definitions/ultimaker_s3.def.json | 2 +- resources/definitions/ultimaker_s5.def.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 2e49dda806..46ade6d85b 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -32,7 +32,7 @@ [ "https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version" ], - "update_url": "https://ultimaker.com/firmware" + "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" }, "bom_numbers": [ 9066 diff --git a/resources/definitions/ultimaker3_extended.def.json b/resources/definitions/ultimaker3_extended.def.json index ba9824896f..970d3a405d 100644 --- a/resources/definitions/ultimaker3_extended.def.json +++ b/resources/definitions/ultimaker3_extended.def.json @@ -29,7 +29,7 @@ [ "https://software.ultimaker.com/releases/firmware/9066/stable/um-update.swu.version" ], - "update_url": "https://ultimaker.com/firmware" + "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" }, "bom_numbers": [ 9511 diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 962bff3fa0..8423af6f21 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -31,7 +31,7 @@ "firmware_update_info": { "id": 213482, "check_urls": ["https://software.ultimaker.com/releases/firmware/213482/stable/um-update.swu.version"], - "update_url": "https://ultimaker.com/firmware" + "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" }, "bom_numbers": [ 213482 diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 8a9880c31a..9bd6fe66f7 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -32,7 +32,7 @@ "firmware_update_info": { "id": 9051, "check_urls": ["https://software.ultimaker.com/releases/firmware/9051/stable/um-update.swu.version"], - "update_url": "https://ultimaker.com/firmware" + "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" }, "bom_numbers": [ 9051, 214475 From b63ccfd71878a7532accbbc2a88f78541d7ac24a Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 29 Jul 2021 15:45:11 +0200 Subject: [PATCH 09/16] Add setting to apply monotonic ordering to ironing as well Contributes to issue CURA-7928. --- resources/definitions/fdmprinter.def.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index c9b91647d3..d57a814034 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1596,6 +1596,16 @@ "limit_to_extruder": "top_bottom_extruder_nr", "settable_per_mesh": true }, + "ironing_monotonic": + { + "label": "Monotonic Ironing Order", + "description": "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent.", + "type": "bool", + "default_value": false, + "enabled": "ironing_enabled and ironing_pattern != 'concentric'", + "limit_to_extruder": "top_bottom_extruder_nr", + "settable_per_mesh": true + }, "ironing_line_spacing": { "label": "Ironing Line Spacing", From 0cdd9dd17520d83ba30892f870fc0c021d6ac981 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 29 Jul 2021 16:16:05 +0200 Subject: [PATCH 10/16] Add setting for monotonic top surface skin You can set it separately, but it defaults to be the same as the rest of the top surface. Contributes to issue CURA-7928. --- resources/definitions/fdmprinter.def.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index d57a814034..5515226eb6 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6405,6 +6405,17 @@ "settable_per_mesh": true, "enabled": "roofing_layer_count > 0 and top_layers > 0" }, + "roofing_monotonic": + { + "label": "Monotonic Top Surface Order", + "description": "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent.", + "type": "bool", + "default_value": false, + "value": "skin_monotonic", + "enabled": "roofing_layer_count > 0 and top_layers > 0 and roofing_pattern != 'concentric'", + "limit_to_extruder": "roofing_extruder_nr", + "settable_per_mesh": true + }, "roofing_angles": { "label": "Top Surface Skin Line Directions", From be59e701f29ef9cad77e5c0f8680718f54f3d212 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 3 Aug 2021 13:07:11 +0200 Subject: [PATCH 11/16] Add seperate preference for plugin notifications check CURA-7689 --- plugins/Toolbox/src/Toolbox.py | 7 +++++-- resources/qml/Preferences/GeneralPage.qml | 19 +++++++++++++++++-- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/plugins/Toolbox/src/Toolbox.py b/plugins/Toolbox/src/Toolbox.py index 625289635a..c238d3f009 100644 --- a/plugins/Toolbox/src/Toolbox.py +++ b/plugins/Toolbox/src/Toolbox.py @@ -183,12 +183,15 @@ class Toolbox(QObject, Extension): self._application.getCuraAPI().account.loginStateChanged.connect(self._restart) + preferences = CuraApplication.getInstance().getPreferences() + + preferences.addPreference("info/automatic_plugin_update_check", True) + # On boot we check which packages have updates. - if CuraApplication.getInstance().getPreferences().getValue("info/automatic_update_check") and len(installed_package_ids_with_versions) > 0: + if preferences.getValue("info/automatic_plugin_update_check") and len(installed_package_ids_with_versions) > 0: # Request the latest and greatest! self._makeRequestByType("updates") - def _fetchPackageData(self) -> None: self._makeRequestByType("packages") self._makeRequestByType("authors") diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index e35b8c22f0..aa8339aa63 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -120,6 +120,8 @@ UM.PreferencesPage checkUpdatesCheckbox.checked = boolCheck(UM.Preferences.getValue("info/automatic_update_check")) UM.Preferences.resetPreference("info/latest_update_source") + UM.Preferences.resetPreference("info/automatic_plugin_update_check") + pluginNotificationsUpdateCheckbox.checked = boolCheck(UM.Preferences.getValue("info/automatic_plugin_update_check")) } ScrollView @@ -820,12 +822,25 @@ UM.PreferencesPage onClicked: UM.Preferences.setValue("info/latest_update_source", "beta") } } - UM.TooltipArea { width: childrenRect.width height: visible ? childrenRect.height : 0 - text: catalog.i18nc("@info:tooltip","Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored.") + text: catalog.i18nc("@info:tooltip", "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!") + + CheckBox + { + id: pluginNotificationsUpdateCheckbox + text: catalog.i18nc("@option:check", "Get notifications for plugin updates") + checked: boolCheck(UM.Preferences.getValue("info/automatic_plugin_update_check")) + onCheckedChanged: UM.Preferences.setValue("info/automatic_plugin_update_check", checked) + } + } + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + text: catalog.i18nc("@info:tooltip", "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored.") CheckBox { From 8c537fc4e6d4014b8a17698a4b2042f8c633f35e Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 3 Aug 2021 13:09:19 +0200 Subject: [PATCH 12/16] Move update related preferences to their own category CURA-7689 --- resources/qml/Preferences/GeneralPage.qml | 65 ++++++++++++++--------- 1 file changed, 39 insertions(+), 26 deletions(-) diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index aa8339aa63..5b28396188 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -770,8 +770,45 @@ UM.PreferencesPage Label { font.bold: true - visible: checkUpdatesCheckbox.visible || sendDataCheckbox.visible - text: catalog.i18nc("@label","Privacy") + text: catalog.i18nc("@label", "Privacy") + } + UM.TooltipArea + { + width: childrenRect.width + height: visible ? childrenRect.height : 0 + text: catalog.i18nc("@info:tooltip", "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored.") + + CheckBox + { + id: sendDataCheckbox + text: catalog.i18nc("@option:check","Send (anonymous) print information") + checked: boolCheck(UM.Preferences.getValue("info/send_slice_info")) + onCheckedChanged: UM.Preferences.setValue("info/send_slice_info", checked) + } + + Button + { + id: showMoreInfo + anchors.top: sendDataCheckbox.bottom + text: catalog.i18nc("@action:button", "More information") + onClicked: + { + CuraApplication.showMoreInformationDialogForAnonymousDataCollection(); + } + } + } + + Item + { + //: Spacer + height: UM.Theme.getSize("default_margin").height + width: UM.Theme.getSize("default_margin").height + } + + Label + { + font.bold: true + text: catalog.i18nc("@label", "Updates") } UM.TooltipArea @@ -836,31 +873,7 @@ UM.PreferencesPage onCheckedChanged: UM.Preferences.setValue("info/automatic_plugin_update_check", checked) } } - UM.TooltipArea - { - width: childrenRect.width - height: visible ? childrenRect.height : 0 - text: catalog.i18nc("@info:tooltip", "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored.") - CheckBox - { - id: sendDataCheckbox - text: catalog.i18nc("@option:check","Send (anonymous) print information") - checked: boolCheck(UM.Preferences.getValue("info/send_slice_info")) - onCheckedChanged: UM.Preferences.setValue("info/send_slice_info", checked) - } - - Button - { - id: showMoreInfo - anchors.top: sendDataCheckbox.bottom - text: catalog.i18nc("@action:button", "More information") - onClicked: - { - CuraApplication.showMoreInformationDialogForAnonymousDataCollection(); - } - } - } /* Multi-buildplate functionality is disabled because it's broken. See CURA-4975 for the ticket to remove it. Item From 4c35259c72b13565d656e3c646a1b60279042758 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 4 Aug 2021 15:19:00 +0200 Subject: [PATCH 13/16] Allow monotonic skin if initial layer pattern is not concentric Contributes to issue CURA-7928. Co-authored-by: Jaime van Kessel --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 5515226eb6..a38cfc8852 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1525,7 +1525,7 @@ "description": "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent.", "type": "bool", "default_value": false, - "enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'", + "enabled": "(top_layers > 0 or bottom_layers > 0) and (top_bottom_pattern != 'concentric' or top_bottom_pattern_0 != 'concentric')", "limit_to_extruder": "top_bottom_extruder_nr", "settable_per_mesh": true }, From c3f26d4daa4c061e37b3d72316f4ed6903c11faf Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Thu, 5 Aug 2021 09:52:03 +0200 Subject: [PATCH 14/16] Move layer.enabled inside the child item in ExtruderIcon When it was in the outer item, it was causing the label to disappear when then extruder icon was getting disabled. Moving it inside the child item which has the opacity change seems to fix that issue. CURA-8417 --- resources/qml/ExtruderIcon.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/qml/ExtruderIcon.qml b/resources/qml/ExtruderIcon.qml index ed392d13d7..8d5852823d 100644 --- a/resources/qml/ExtruderIcon.qml +++ b/resources/qml/ExtruderIcon.qml @@ -18,11 +18,12 @@ Item property bool extruderEnabled: true property alias iconSize: mainIcon.sourceSize property string iconVariant: "medium" - layer.enabled: true // Prevent weird opacity effects. + Item { opacity: extruderEnabled ? 1 : UM.Theme.getColor("extruder_disabled").a anchors.fill: parent + layer.enabled: true // Prevent weird opacity effects. UM.RecolorImage { From b78651e45f9a123c8b345420fbc0d859eb176067 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 5 Aug 2021 14:10:41 +0200 Subject: [PATCH 15/16] Add monotonic settings to advanced and expert visibility Contributes to issue CURA-7928. --- resources/setting_visibility/advanced.cfg | 1 + resources/setting_visibility/expert.cfg | 3 +++ 2 files changed, 4 insertions(+) diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index 9198f390fc..f4acaca9a0 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -34,6 +34,7 @@ top_layers bottom_thickness bottom_layers ironing_enabled +skin_monotonic [infill] infill_extruder_nr diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 274433b7b2..55a3ab6ce9 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -59,6 +59,7 @@ bottom_thickness bottom_layers top_bottom_pattern top_bottom_pattern_0 +skin_monotonic connect_skin_polygons skin_angles skin_no_small_gaps_heuristic @@ -69,6 +70,7 @@ ironing_pattern ironing_line_spacing ironing_flow ironing_inset +ironing_monotonic speed_ironing acceleration_ironing jerk_ironing @@ -363,6 +365,7 @@ support_tree_wall_count slicing_tolerance roofing_line_width roofing_pattern +roofing_monotonic roofing_angles infill_enable_travel_optimization material_flow_dependent_temperature From d709b86c16b1b59256a1fab94c8889be6b73ee0c Mon Sep 17 00:00:00 2001 From: goofoo3d <74950628+goofoo3d@users.noreply.github.com> Date: Fri, 6 Aug 2021 21:14:24 +0800 Subject: [PATCH 16/16] add goofoo,renkforce printf (#8959) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * add goofoo,renkforce printf * 优化PVA打印的配置 * 修正双喷打印不能重叠的问题 * 修改配置信息 * 添加机型配置 * 新增 goofoo 2-1混色脚本,优化机型配置. * 优化goofoo 2-1混色脚本 * 调整了机型配置 * 添加不同口径喷嘴 * 添加喷嘴口径 * 修改机器名称不对的问题 * modify setting_version = 16 to setting_version = 17 * modify renkforce & goofoo's files setting_version = 16 to 17 * modify pva support_pattern & e-one size * modify pva support pattern to grid Co-authored-by: laiqiqi --- resources/definitions/goofoo_base.def.json | 141 ++++++++++++++++++ resources/definitions/goofoo_e-one.def.json | 29 ++++ resources/definitions/goofoo_far.def.json | 15 ++ resources/definitions/goofoo_gemini.def.json | 22 +++ resources/definitions/goofoo_giant.def.json | 15 ++ resources/definitions/goofoo_max.def.json | 24 +++ resources/definitions/goofoo_mido.def.json | 15 ++ .../definitions/goofoo_miniplus.def.json | 15 ++ resources/definitions/goofoo_near.def.json | 9 ++ resources/definitions/goofoo_nova.def.json | 16 ++ resources/definitions/goofoo_open.def.json | 21 +++ resources/definitions/goofoo_plus.def.json | 15 ++ resources/definitions/goofoo_small.def.json | 23 +++ resources/definitions/goofoo_t-one.def.json | 36 +++++ resources/definitions/goofoo_tiny.def.json | 16 ++ .../definitions/goofoo_tinyplus.def.json | 16 ++ .../definitions/renkforce_basic3.def.json | 17 +++ resources/definitions/renkforce_pro3.def.json | 17 +++ resources/definitions/renkforce_pro6.def.json | 17 +++ .../extruders/goofoo_base_extruder.def.json | 16 ++ .../extruders/goofoo_gemini_1st.def.json | 19 +++ .../extruders/goofoo_gemini_2st.def.json | 19 +++ resources/extruders/goofoo_tone_1st.def.json | 19 +++ resources/extruders/goofoo_tone_2st.def.json | 19 +++ .../abs/goofoo_far_0.40_abs_fine.inst.cfg | 17 +++ .../abs/goofoo_far_0.40_abs_standard.inst.cfg | 17 +++ .../abs/goofoo_near_0.40_abs_fine.inst.cfg | 17 +++ .../goofoo_near_0.40_abs_standard.inst.cfg | 17 +++ .../asa/goofoo_far_0.40_asa_fine.inst.cfg | 17 +++ .../asa/goofoo_far_0.40_asa_standard.inst.cfg | 17 +++ .../asa/goofoo_near_0.40_asa_fine.inst.cfg | 17 +++ .../goofoo_near_0.40_asa_standard.inst.cfg | 17 +++ .../goofoo_far_global_0.15_fine.inst.cfg | 20 +++ .../goofoo_far_global_0.1_efine.inst.cfg | 20 +++ .../goofoo_far_global_0.20_standard.inst.cfg | 20 +++ .../goofoo_far_global_0.3_draft.inst.cfg | 21 +++ .../goofoo_near_global_0.15_fine.inst.cfg | 20 +++ .../goofoo_near_global_0.1_efine.inst.cfg | 20 +++ .../goofoo_near_global_0.20_standard.inst.cfg | 20 +++ .../goofoo_near_global_0.3_draft.inst.cfg | 21 +++ .../goofoo_open_global_0.15_fine.inst.cfg | 20 +++ .../goofoo_open_global_0.1_efine.inst.cfg | 20 +++ .../goofoo_open_global_0.20_standard.inst.cfg | 20 +++ .../goofoo_open_global_0.3_draft.inst.cfg | 21 +++ .../goofoo_small_global_0.15_fine.inst.cfg | 20 +++ .../goofoo_small_global_0.1_efine.inst.cfg | 20 +++ ...goofoo_small_global_0.20_standard.inst.cfg | 20 +++ .../goofoo_small_global_0.3_draft.inst.cfg | 21 +++ .../hips/goofoo_far_0.40_hips_draft.inst.cfg | 16 ++ .../hips/goofoo_far_0.40_hips_efine.inst.cfg | 16 ++ .../hips/goofoo_far_0.40_hips_fine.inst.cfg | 16 ++ .../goofoo_far_0.40_hips_standard.inst.cfg | 16 ++ .../hips/goofoo_near_0.40_hips_draft.inst.cfg | 16 ++ .../hips/goofoo_near_0.40_hips_efine.inst.cfg | 16 ++ .../hips/goofoo_near_0.40_hips_fine.inst.cfg | 16 ++ .../goofoo_near_0.40_hips_standard.inst.cfg | 16 ++ .../hips/goofoo_open_0.40_hips_draft.inst.cfg | 16 ++ .../hips/goofoo_open_0.40_hips_efine.inst.cfg | 16 ++ .../hips/goofoo_open_0.40_hips_fine.inst.cfg | 16 ++ .../goofoo_open_0.40_hips_standard.inst.cfg | 16 ++ .../pa/goofoo_far_0.40_pa_fine.inst.cfg | 16 ++ .../pa/goofoo_far_0.40_pa_standard.inst.cfg | 16 ++ .../pa/goofoo_near_0.40_pa_fine.inst.cfg | 16 ++ .../pa/goofoo_near_0.40_pa_standard.inst.cfg | 16 ++ .../pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg | 16 ++ .../goofoo_far_0.40_pa_cf_standard.inst.cfg | 16 ++ .../goofoo_near_0.40_pa_cf_fine.inst.cfg | 16 ++ .../goofoo_near_0.40_pa_cf_standard.inst.cfg | 16 ++ .../pc/goofoo_far_0.40_pc_draft.inst.cfg | 16 ++ .../pc/goofoo_far_0.40_pc_efine.inst.cfg | 16 ++ .../pc/goofoo_far_0.40_pc_fine.inst.cfg | 16 ++ .../pc/goofoo_far_0.40_pc_standard.inst.cfg | 16 ++ .../pc/goofoo_near_0.40_pc_draft.inst.cfg | 16 ++ .../pc/goofoo_near_0.40_pc_efine.inst.cfg | 16 ++ .../pc/goofoo_near_0.40_pc_fine.inst.cfg | 16 ++ .../pc/goofoo_near_0.40_pc_standard.inst.cfg | 16 ++ .../peek/goofoo_far_0.40_peek_draft.inst.cfg | 17 +++ .../peek/goofoo_far_0.40_peek_efine.inst.cfg | 17 +++ .../peek/goofoo_far_0.40_peek_fine.inst.cfg | 17 +++ .../goofoo_far_0.40_peek_standard.inst.cfg | 17 +++ .../peek/goofoo_near_0.40_peek_draft.inst.cfg | 17 +++ .../peek/goofoo_near_0.40_peek_efine.inst.cfg | 17 +++ .../peek/goofoo_near_0.40_peek_fine.inst.cfg | 17 +++ .../goofoo_near_0.40_peek_standard.inst.cfg | 17 +++ .../petg/goofoo_far_0.40_petg_fine.inst.cfg | 17 +++ .../goofoo_far_0.40_petg_standard.inst.cfg | 17 +++ .../petg/goofoo_near_0.40_petg_fine.inst.cfg | 17 +++ .../goofoo_near_0.40_petg_standard.inst.cfg | 17 +++ .../petg/goofoo_open_0.40_petg_fine.inst.cfg | 18 +++ .../goofoo_open_0.40_petg_standard.inst.cfg | 18 +++ .../petg/goofoo_small_0.40_petg_fine.inst.cfg | 17 +++ .../goofoo_small_0.40_petg_standard.inst.cfg | 17 +++ .../pla/goofoo_far_0.40_pla_draft.inst.cfg | 16 ++ .../pla/goofoo_far_0.40_pla_efine.inst.cfg | 16 ++ .../pla/goofoo_far_0.40_pla_fine.inst.cfg | 16 ++ .../pla/goofoo_far_0.40_pla_standard.inst.cfg | 16 ++ .../goofoo_far_bronze_0.40_pla_draft.inst.cfg | 17 +++ .../goofoo_far_bronze_0.40_pla_efine.inst.cfg | 17 +++ .../goofoo_far_bronze_0.40_pla_fine.inst.cfg | 17 +++ ...ofoo_far_bronze_0.40_pla_standard.inst.cfg | 17 +++ ...goofoo_far_emarble_0.40_pla_draft.inst.cfg | 16 ++ ...goofoo_far_emarble_0.40_pla_efine.inst.cfg | 16 ++ .../goofoo_far_emarble_0.40_pla_fine.inst.cfg | 16 ++ ...foo_far_emarble_0.40_pla_standard.inst.cfg | 16 ++ .../goofoo_far_esilk_0.40_pla_draft.inst.cfg | 16 ++ .../goofoo_far_esilk_0.40_pla_efine.inst.cfg | 16 ++ .../goofoo_far_esilk_0.40_pla_fine.inst.cfg | 16 ++ ...oofoo_far_esilk_0.40_pla_standard.inst.cfg | 16 ++ .../goofoo_far_wood_0.40_pla_draft.inst.cfg | 16 ++ .../goofoo_far_wood_0.40_pla_efine.inst.cfg | 16 ++ .../goofoo_far_wood_0.40_pla_fine.inst.cfg | 16 ++ ...goofoo_far_wood_0.40_pla_standard.inst.cfg | 16 ++ .../pla/goofoo_near_0.40_pla_draft.inst.cfg | 16 ++ .../pla/goofoo_near_0.40_pla_efine.inst.cfg | 16 ++ .../pla/goofoo_near_0.40_pla_fine.inst.cfg | 16 ++ .../goofoo_near_0.40_pla_standard.inst.cfg | 16 ++ ...goofoo_near_bronze_0.40_pla_draft.inst.cfg | 17 +++ ...goofoo_near_bronze_0.40_pla_efine.inst.cfg | 17 +++ .../goofoo_near_bronze_0.40_pla_fine.inst.cfg | 17 +++ ...foo_near_bronze_0.40_pla_standard.inst.cfg | 17 +++ ...oofoo_near_emarble_0.40_pla_draft.inst.cfg | 16 ++ ...oofoo_near_emarble_0.40_pla_efine.inst.cfg | 16 ++ ...goofoo_near_emarble_0.40_pla_fine.inst.cfg | 16 ++ ...oo_near_emarble_0.40_pla_standard.inst.cfg | 16 ++ .../goofoo_near_esilk_0.40_pla_draft.inst.cfg | 16 ++ .../goofoo_near_esilk_0.40_pla_efine.inst.cfg | 16 ++ .../goofoo_near_esilk_0.40_pla_fine.inst.cfg | 16 ++ ...ofoo_near_esilk_0.40_pla_standard.inst.cfg | 16 ++ .../goofoo_near_wood_0.40_pla_draft.inst.cfg | 16 ++ .../goofoo_near_wood_0.40_pla_efine.inst.cfg | 16 ++ .../goofoo_near_wood_0.40_pla_fine.inst.cfg | 16 ++ ...oofoo_near_wood_0.40_pla_standard.inst.cfg | 16 ++ .../pla/goofoo_open_0.40_pla_draft.inst.cfg | 17 +++ .../pla/goofoo_open_0.40_pla_efine.inst.cfg | 17 +++ .../pla/goofoo_open_0.40_pla_fine.inst.cfg | 17 +++ .../goofoo_open_0.40_pla_standard.inst.cfg | 17 +++ ...oofoo_open_emarble_0.40_pla_draft.inst.cfg | 17 +++ ...oofoo_open_emarble_0.40_pla_efine.inst.cfg | 17 +++ ...goofoo_open_emarble_0.40_pla_fine.inst.cfg | 17 +++ ...oo_open_emarble_0.40_pla_standard.inst.cfg | 17 +++ .../goofoo_open_esilk_0.40_pla_draft.inst.cfg | 17 +++ .../goofoo_open_esilk_0.40_pla_efine.inst.cfg | 17 +++ .../goofoo_open_esilk_0.40_pla_fine.inst.cfg | 17 +++ ...ofoo_open_esilk_0.40_pla_standard.inst.cfg | 17 +++ .../goofoo_open_wood_0.40_pla_draft.inst.cfg | 17 +++ .../goofoo_open_wood_0.40_pla_efine.inst.cfg | 17 +++ .../goofoo_open_wood_0.40_pla_fine.inst.cfg | 17 +++ ...oofoo_open_wood_0.40_pla_standard.inst.cfg | 17 +++ .../pla/goofoo_small_0.40_pla_draft.inst.cfg | 16 ++ .../pla/goofoo_small_0.40_pla_efine.inst.cfg | 16 ++ .../pla/goofoo_small_0.40_pla_fine.inst.cfg | 16 ++ .../goofoo_small_0.40_pla_standard.inst.cfg | 16 ++ ...ofoo_small_emarble_0.40_pla_draft.inst.cfg | 16 ++ ...ofoo_small_emarble_0.40_pla_efine.inst.cfg | 16 ++ ...oofoo_small_emarble_0.40_pla_fine.inst.cfg | 16 ++ ...o_small_emarble_0.40_pla_standard.inst.cfg | 16 ++ ...goofoo_small_esilk_0.40_pla_draft.inst.cfg | 16 ++ ...goofoo_small_esilk_0.40_pla_efine.inst.cfg | 16 ++ .../goofoo_small_esilk_0.40_pla_fine.inst.cfg | 16 ++ ...foo_small_esilk_0.40_pla_standard.inst.cfg | 16 ++ .../goofoo_small_wood_0.40_pla_draft.inst.cfg | 16 ++ .../goofoo_small_wood_0.40_pla_efine.inst.cfg | 16 ++ .../goofoo_small_wood_0.40_pla_fine.inst.cfg | 16 ++ ...ofoo_small_wood_0.40_pla_standard.inst.cfg | 16 ++ .../pva/goofoo_far_0.40_pva_draft.inst.cfg | 20 +++ .../pva/goofoo_far_0.40_pva_efine.inst.cfg | 20 +++ .../pva/goofoo_far_0.40_pva_fine.inst.cfg | 20 +++ .../pva/goofoo_far_0.40_pva_standard.inst.cfg | 20 +++ .../pva/goofoo_near_0.40_pva_draft.inst.cfg | 20 +++ .../pva/goofoo_near_0.40_pva_efine.inst.cfg | 20 +++ .../pva/goofoo_near_0.40_pva_fine.inst.cfg | 20 +++ .../goofoo_near_0.40_pva_standard.inst.cfg | 20 +++ .../pva/goofoo_open_0.40_pva_draft.inst.cfg | 21 +++ .../pva/goofoo_open_0.40_pva_efine.inst.cfg | 21 +++ .../pva/goofoo_open_0.40_pva_fine.inst.cfg | 21 +++ .../goofoo_open_0.40_pva_standard.inst.cfg | 21 +++ .../tpe/goofoo_far_0.40_tpe_draft.inst.cfg | 17 +++ .../tpe/goofoo_far_0.40_tpe_efine.inst.cfg | 17 +++ .../tpe/goofoo_far_0.40_tpe_fine.inst.cfg | 17 +++ .../tpe/goofoo_far_0.40_tpe_standard.inst.cfg | 17 +++ .../tpe/goofoo_near_0.40_tpe_draft.inst.cfg | 17 +++ .../tpe/goofoo_near_0.40_tpe_efine.inst.cfg | 17 +++ .../tpe/goofoo_near_0.40_tpe_fine.inst.cfg | 17 +++ .../goofoo_near_0.40_tpe_standard.inst.cfg | 17 +++ .../goofoo_far_0.40_tpu_87a_draft.inst.cfg | 17 +++ .../tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg | 17 +++ .../goofoo_far_0.40_tpu_87a_standard.inst.cfg | 17 +++ .../goofoo_far_0.40_tpu_95a_draft.inst.cfg | 17 +++ .../goofoo_far_0.40_tpu_95a_efine.inst.cfg | 17 +++ .../tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg | 17 +++ .../goofoo_far_0.40_tpu_95a_standard.inst.cfg | 17 +++ .../goofoo_near_0.40_tpu_87a_draft.inst.cfg | 17 +++ .../goofoo_near_0.40_tpu_87a_fine.inst.cfg | 17 +++ ...goofoo_near_0.40_tpu_87a_standard.inst.cfg | 17 +++ .../goofoo_near_0.40_tpu_95a_draft.inst.cfg | 17 +++ .../goofoo_near_0.40_tpu_95a_efine.inst.cfg | 17 +++ .../goofoo_near_0.40_tpu_95a_fine.inst.cfg | 17 +++ ...goofoo_near_0.40_tpu_95a_standard.inst.cfg | 17 +++ resources/variants/goofoo_base_0.4.inst.cfg | 12 ++ resources/variants/goofoo_e-one_0.2.inst.cfg | 12 ++ resources/variants/goofoo_e-one_0.4.inst.cfg | 12 ++ resources/variants/goofoo_e-one_0.6.inst.cfg | 12 ++ resources/variants/goofoo_e-one_0.8.inst.cfg | 12 ++ resources/variants/goofoo_e-one_1.0.inst.cfg | 12 ++ resources/variants/goofoo_gemini_0.2.inst.cfg | 12 ++ resources/variants/goofoo_gemini_0.4.inst.cfg | 12 ++ resources/variants/goofoo_gemini_0.6.inst.cfg | 12 ++ resources/variants/goofoo_gemini_0.8.inst.cfg | 12 ++ resources/variants/goofoo_gemini_1.0.inst.cfg | 12 ++ resources/variants/goofoo_giant_0.2.inst.cfg | 12 ++ resources/variants/goofoo_giant_0.4.inst.cfg | 12 ++ resources/variants/goofoo_giant_0.6.inst.cfg | 12 ++ resources/variants/goofoo_giant_0.8.inst.cfg | 12 ++ resources/variants/goofoo_giant_1.0.inst.cfg | 12 ++ resources/variants/goofoo_max_0.2.inst.cfg | 12 ++ resources/variants/goofoo_max_0.4.inst.cfg | 12 ++ resources/variants/goofoo_max_0.6.inst.cfg | 12 ++ resources/variants/goofoo_max_0.8.inst.cfg | 12 ++ resources/variants/goofoo_max_1.0.inst.cfg | 12 ++ resources/variants/goofoo_mido_0.2.inst.cfg | 12 ++ resources/variants/goofoo_mido_0.4.inst.cfg | 12 ++ resources/variants/goofoo_mido_0.6.inst.cfg | 12 ++ resources/variants/goofoo_mido_0.8.inst.cfg | 12 ++ resources/variants/goofoo_mido_1.0.inst.cfg | 12 ++ .../variants/goofoo_miniplus_0.2.inst.cfg | 12 ++ .../variants/goofoo_miniplus_0.4.inst.cfg | 12 ++ .../variants/goofoo_miniplus_0.6.inst.cfg | 12 ++ .../variants/goofoo_miniplus_0.8.inst.cfg | 12 ++ .../variants/goofoo_miniplus_1.0.inst.cfg | 12 ++ resources/variants/goofoo_nova_0.2.inst.cfg | 12 ++ resources/variants/goofoo_nova_0.4.inst.cfg | 12 ++ resources/variants/goofoo_nova_0.6.inst.cfg | 12 ++ resources/variants/goofoo_nova_0.8.inst.cfg | 12 ++ resources/variants/goofoo_nova_1.0.inst.cfg | 12 ++ resources/variants/goofoo_plus_0.2.inst.cfg | 12 ++ resources/variants/goofoo_plus_0.4.inst.cfg | 12 ++ resources/variants/goofoo_plus_0.6.inst.cfg | 12 ++ resources/variants/goofoo_plus_0.8.inst.cfg | 12 ++ resources/variants/goofoo_plus_1.0.inst.cfg | 12 ++ resources/variants/goofoo_t-one_0.2.inst.cfg | 12 ++ resources/variants/goofoo_t-one_0.4.inst.cfg | 12 ++ resources/variants/goofoo_t-one_0.6.inst.cfg | 12 ++ resources/variants/goofoo_t-one_0.8.inst.cfg | 12 ++ resources/variants/goofoo_t-one_1.0.inst.cfg | 12 ++ resources/variants/goofoo_tiny_0.2.inst.cfg | 12 ++ resources/variants/goofoo_tiny_0.4.inst.cfg | 12 ++ resources/variants/goofoo_tiny_0.6.inst.cfg | 12 ++ resources/variants/goofoo_tiny_0.8.inst.cfg | 12 ++ resources/variants/goofoo_tiny_1.0.inst.cfg | 12 ++ .../variants/goofoo_tinyplus_0.2.inst.cfg | 12 ++ .../variants/goofoo_tinyplus_0.4.inst.cfg | 12 ++ .../variants/goofoo_tinyplus_0.6.inst.cfg | 12 ++ .../variants/goofoo_tinyplus_0.8.inst.cfg | 12 ++ .../variants/goofoo_tinyplus_1.0.inst.cfg | 12 ++ .../variants/renkforce_basic3_0.2.inst.cfg | 12 ++ .../variants/renkforce_basic3_0.4.inst.cfg | 12 ++ .../variants/renkforce_basic3_0.6.inst.cfg | 12 ++ .../variants/renkforce_basic3_0.8.inst.cfg | 12 ++ .../variants/renkforce_basic3_1.0.inst.cfg | 12 ++ .../variants/renkforce_pro3_0.2.inst.cfg | 12 ++ .../variants/renkforce_pro3_0.4.inst.cfg | 12 ++ .../variants/renkforce_pro3_0.6.inst.cfg | 12 ++ .../variants/renkforce_pro3_0.8.inst.cfg | 12 ++ .../variants/renkforce_pro3_1.0.inst.cfg | 12 ++ .../variants/renkforce_pro6_0.2.inst.cfg | 12 ++ .../variants/renkforce_pro6_0.4.inst.cfg | 12 ++ .../variants/renkforce_pro6_0.6.inst.cfg | 12 ++ .../variants/renkforce_pro6_0.8.inst.cfg | 12 ++ .../variants/renkforce_pro6_1.0.inst.cfg | 12 ++ 269 files changed, 4399 insertions(+) create mode 100644 resources/definitions/goofoo_base.def.json create mode 100644 resources/definitions/goofoo_e-one.def.json create mode 100644 resources/definitions/goofoo_far.def.json create mode 100644 resources/definitions/goofoo_gemini.def.json create mode 100644 resources/definitions/goofoo_giant.def.json create mode 100644 resources/definitions/goofoo_max.def.json create mode 100644 resources/definitions/goofoo_mido.def.json create mode 100644 resources/definitions/goofoo_miniplus.def.json create mode 100644 resources/definitions/goofoo_near.def.json create mode 100644 resources/definitions/goofoo_nova.def.json create mode 100644 resources/definitions/goofoo_open.def.json create mode 100644 resources/definitions/goofoo_plus.def.json create mode 100644 resources/definitions/goofoo_small.def.json create mode 100644 resources/definitions/goofoo_t-one.def.json create mode 100644 resources/definitions/goofoo_tiny.def.json create mode 100644 resources/definitions/goofoo_tinyplus.def.json create mode 100644 resources/definitions/renkforce_basic3.def.json create mode 100644 resources/definitions/renkforce_pro3.def.json create mode 100644 resources/definitions/renkforce_pro6.def.json create mode 100644 resources/extruders/goofoo_base_extruder.def.json create mode 100644 resources/extruders/goofoo_gemini_1st.def.json create mode 100644 resources/extruders/goofoo_gemini_2st.def.json create mode 100644 resources/extruders/goofoo_tone_1st.def.json create mode 100644 resources/extruders/goofoo_tone_2st.def.json create mode 100644 resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg create mode 100644 resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg create mode 100644 resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg create mode 100644 resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg create mode 100644 resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg create mode 100644 resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg create mode 100644 resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg create mode 100644 resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg create mode 100644 resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg create mode 100644 resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg create mode 100644 resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg create mode 100644 resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg create mode 100644 resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg create mode 100644 resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg create mode 100644 resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg create mode 100644 resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg create mode 100644 resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg create mode 100644 resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg create mode 100644 resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg create mode 100644 resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg create mode 100644 resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg create mode 100644 resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg create mode 100644 resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg create mode 100644 resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg create mode 100644 resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg create mode 100644 resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg create mode 100644 resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg create mode 100644 resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg create mode 100644 resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg create mode 100644 resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg create mode 100644 resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg create mode 100644 resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg create mode 100644 resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg create mode 100644 resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg create mode 100644 resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg create mode 100644 resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg create mode 100644 resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg create mode 100644 resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg create mode 100644 resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg create mode 100644 resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg create mode 100644 resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg create mode 100644 resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg create mode 100644 resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg create mode 100644 resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg create mode 100644 resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg create mode 100644 resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg create mode 100644 resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg create mode 100644 resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg create mode 100644 resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg create mode 100644 resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg create mode 100644 resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg create mode 100644 resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg create mode 100644 resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg create mode 100644 resources/variants/goofoo_base_0.4.inst.cfg create mode 100644 resources/variants/goofoo_e-one_0.2.inst.cfg create mode 100644 resources/variants/goofoo_e-one_0.4.inst.cfg create mode 100644 resources/variants/goofoo_e-one_0.6.inst.cfg create mode 100644 resources/variants/goofoo_e-one_0.8.inst.cfg create mode 100644 resources/variants/goofoo_e-one_1.0.inst.cfg create mode 100644 resources/variants/goofoo_gemini_0.2.inst.cfg create mode 100644 resources/variants/goofoo_gemini_0.4.inst.cfg create mode 100644 resources/variants/goofoo_gemini_0.6.inst.cfg create mode 100644 resources/variants/goofoo_gemini_0.8.inst.cfg create mode 100644 resources/variants/goofoo_gemini_1.0.inst.cfg create mode 100644 resources/variants/goofoo_giant_0.2.inst.cfg create mode 100644 resources/variants/goofoo_giant_0.4.inst.cfg create mode 100644 resources/variants/goofoo_giant_0.6.inst.cfg create mode 100644 resources/variants/goofoo_giant_0.8.inst.cfg create mode 100644 resources/variants/goofoo_giant_1.0.inst.cfg create mode 100644 resources/variants/goofoo_max_0.2.inst.cfg create mode 100644 resources/variants/goofoo_max_0.4.inst.cfg create mode 100644 resources/variants/goofoo_max_0.6.inst.cfg create mode 100644 resources/variants/goofoo_max_0.8.inst.cfg create mode 100644 resources/variants/goofoo_max_1.0.inst.cfg create mode 100644 resources/variants/goofoo_mido_0.2.inst.cfg create mode 100644 resources/variants/goofoo_mido_0.4.inst.cfg create mode 100644 resources/variants/goofoo_mido_0.6.inst.cfg create mode 100644 resources/variants/goofoo_mido_0.8.inst.cfg create mode 100644 resources/variants/goofoo_mido_1.0.inst.cfg create mode 100644 resources/variants/goofoo_miniplus_0.2.inst.cfg create mode 100644 resources/variants/goofoo_miniplus_0.4.inst.cfg create mode 100644 resources/variants/goofoo_miniplus_0.6.inst.cfg create mode 100644 resources/variants/goofoo_miniplus_0.8.inst.cfg create mode 100644 resources/variants/goofoo_miniplus_1.0.inst.cfg create mode 100644 resources/variants/goofoo_nova_0.2.inst.cfg create mode 100644 resources/variants/goofoo_nova_0.4.inst.cfg create mode 100644 resources/variants/goofoo_nova_0.6.inst.cfg create mode 100644 resources/variants/goofoo_nova_0.8.inst.cfg create mode 100644 resources/variants/goofoo_nova_1.0.inst.cfg create mode 100644 resources/variants/goofoo_plus_0.2.inst.cfg create mode 100644 resources/variants/goofoo_plus_0.4.inst.cfg create mode 100644 resources/variants/goofoo_plus_0.6.inst.cfg create mode 100644 resources/variants/goofoo_plus_0.8.inst.cfg create mode 100644 resources/variants/goofoo_plus_1.0.inst.cfg create mode 100644 resources/variants/goofoo_t-one_0.2.inst.cfg create mode 100644 resources/variants/goofoo_t-one_0.4.inst.cfg create mode 100644 resources/variants/goofoo_t-one_0.6.inst.cfg create mode 100644 resources/variants/goofoo_t-one_0.8.inst.cfg create mode 100644 resources/variants/goofoo_t-one_1.0.inst.cfg create mode 100644 resources/variants/goofoo_tiny_0.2.inst.cfg create mode 100644 resources/variants/goofoo_tiny_0.4.inst.cfg create mode 100644 resources/variants/goofoo_tiny_0.6.inst.cfg create mode 100644 resources/variants/goofoo_tiny_0.8.inst.cfg create mode 100644 resources/variants/goofoo_tiny_1.0.inst.cfg create mode 100644 resources/variants/goofoo_tinyplus_0.2.inst.cfg create mode 100644 resources/variants/goofoo_tinyplus_0.4.inst.cfg create mode 100644 resources/variants/goofoo_tinyplus_0.6.inst.cfg create mode 100644 resources/variants/goofoo_tinyplus_0.8.inst.cfg create mode 100644 resources/variants/goofoo_tinyplus_1.0.inst.cfg create mode 100644 resources/variants/renkforce_basic3_0.2.inst.cfg create mode 100644 resources/variants/renkforce_basic3_0.4.inst.cfg create mode 100644 resources/variants/renkforce_basic3_0.6.inst.cfg create mode 100644 resources/variants/renkforce_basic3_0.8.inst.cfg create mode 100644 resources/variants/renkforce_basic3_1.0.inst.cfg create mode 100644 resources/variants/renkforce_pro3_0.2.inst.cfg create mode 100644 resources/variants/renkforce_pro3_0.4.inst.cfg create mode 100644 resources/variants/renkforce_pro3_0.6.inst.cfg create mode 100644 resources/variants/renkforce_pro3_0.8.inst.cfg create mode 100644 resources/variants/renkforce_pro3_1.0.inst.cfg create mode 100644 resources/variants/renkforce_pro6_0.2.inst.cfg create mode 100644 resources/variants/renkforce_pro6_0.4.inst.cfg create mode 100644 resources/variants/renkforce_pro6_0.6.inst.cfg create mode 100644 resources/variants/renkforce_pro6_0.8.inst.cfg create mode 100644 resources/variants/renkforce_pro6_1.0.inst.cfg diff --git a/resources/definitions/goofoo_base.def.json b/resources/definitions/goofoo_base.def.json new file mode 100644 index 0000000000..6d840438c1 --- /dev/null +++ b/resources/definitions/goofoo_base.def.json @@ -0,0 +1,141 @@ +{ + "name": "Goofoo Base Printer", + "version": 2, + "inherits": "fdmprinter", + "metadata": { + "visible": false, + "author": "goofoo3d.com", + "manufacturer": "GooFoo", + "file_formats": "text/x-gcode", + "first_start_actions": ["MachineSettingsAction"], + + "machine_extruder_trains": { + "0": "goofoo_base_extruder" + }, + + "has_materials": true, + "preferred_material": "goofoo_pla", + + "has_variants": true, + "variants_name": "Nozzle Size", + "preferred_variant_name": "0.4mm Nozzle", + + "has_machine_quality": true, + "preferred_quality_type": "normal" + + }, + "overrides": { + + "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract the filament\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\n\nG28 X0 Y0 ;Home X and Y\n\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z" }, + + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_feedrate_e": { "value": 50 }, + + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 100 }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_acceleration": { "value": 500 }, + + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.4 }, + "machine_max_jerk_e": { "value": 5 }, + + "machine_heated_bed": { "default_value": true }, + + "material_diameter": { "default_value": 1.75 }, + + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" }, + + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + + "acceleration_enabled": { "value": false }, + "jerk_enabled": { "value": false }, + + "speed_print": { "value": 40.0 } , + "speed_infill": { "value": "speed_print" }, + "speed_wall": { "value": "speed_print" }, + "speed_wall_0": { "value": "speed_wall" }, + "speed_wall_x": { "value": "speed_wall" }, + "speed_topbottom": { "value": "speed_print" }, + "speed_roofing": { "value": "speed_topbottom" }, + "speed_travel": { "value": "80" }, + "speed_layer_0": { "value": 20.0 }, + "speed_print_layer_0": { "value": "speed_layer_0" }, + "speed_travel_layer_0": { "value": "60" }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_z_hop": { "value": 5 }, + + "skirt_brim_speed": { "value": "speed_layer_0" }, + + "line_width": { "value": "machine_nozzle_size" }, + + "optimize_wall_printing_order": { "value": "True" }, + + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_flow": { "value": 100 }, + "travel_compensate_overlapping_walls_0_enabled": { "value": "False" }, + + "z_seam_type": { "value": "'back'" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + + "infill_sparse_density": { "value": "20" }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 30.0 }, + "skin_overlap": { "value": 10.0 }, + "infill_wipe_dist": { "value": 0.0 }, + "wall_0_wipe_dist": { "value": 0.0 }, + + "fill_perimeter_gaps": { "value": "'everywhere'" }, + "fill_outline_gaps": { "value": false }, + "filter_out_tiny_gaps": { "value": false }, + + "retraction_speed": { + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", + "maximum_value": 200 + }, + "retraction_retract_speed": { + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", + "maximum_value": 200 + }, + "retraction_prime_speed": { + "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')", + "maximum_value": 200 + }, + + "retraction_hop_enabled": { "value": "False" }, + "retraction_hop": { "value": 0.2 }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "travel_avoid_other_parts": { "value": true }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + + "retraction_enable": { "value": true }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_min_travel": { "value": 1.5 }, + + "cool_fan_full_at_height": { "value": "3 * layer_height" }, + "cool_fan_enabled": { "value": true }, + "cool_min_layer_time": { "value": 10 }, + + + + + "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" }, + "wall_thickness": {"value": "line_width * 2" } + + } +} diff --git a/resources/definitions/goofoo_e-one.def.json b/resources/definitions/goofoo_e-one.def.json new file mode 100644 index 0000000000..e2c89e0065 --- /dev/null +++ b/resources/definitions/goofoo_e-one.def.json @@ -0,0 +1,29 @@ +{ + "name": "Goofoo E-one", + "version": 2, + "inherits": "goofoo_open", + "overrides": { + "machine_name": { "default_value": "Goofoo E-one" }, + "machine_width": { "default_value": 300 }, + "machine_depth": { "default_value": 300 }, + "machine_height": { "default_value": 400 } + }, + "metadata": { + "visible": true, + "exclude_materials": [ + "goofoo_bronze_pla", + "goofoo_peek", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "goofoo_pa_cf", + "goofoo_pc", + "goofoo_pa", + "goofoo_asa", + "goofoo_abs", + "goofoo_pva", + "goofoo_hips", + "goofoo_pva" + ] + } +} diff --git a/resources/definitions/goofoo_far.def.json b/resources/definitions/goofoo_far.def.json new file mode 100644 index 0000000000..ca91655179 --- /dev/null +++ b/resources/definitions/goofoo_far.def.json @@ -0,0 +1,15 @@ +{ + "name": "Goofoo Far", + "version": 2, + "inherits": "goofoo_base", + "metadata": { + "quality_definition": "goofoo_far", + "visible": false, + "exclude_materials": [ + "goofoo_bronze_pla", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a" + ] + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_gemini.def.json b/resources/definitions/goofoo_gemini.def.json new file mode 100644 index 0000000000..7ada5057de --- /dev/null +++ b/resources/definitions/goofoo_gemini.def.json @@ -0,0 +1,22 @@ +{ + "name": "Goofoo Gemini", + "version": 2, + "inherits": "goofoo_far", + "overrides": { + "machine_name": { "default_value": "Goofoo Gemini" }, + "machine_width": { "default_value": 360 }, + "machine_depth": { "default_value": 250 }, + "machine_height": { "default_value": 200 }, + "machine_head_with_fans_polygon":{"default_value":[[0, 0], [0, 0], [0, 0], [0, 0]]}, + "machine_extruder_count": { + "default_value": 2 + } + }, + "metadata": { + "machine_extruder_trains": { + "0": "goofoo_gemini_1st", + "1": "goofoo_gemini_2st" + }, + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_giant.def.json b/resources/definitions/goofoo_giant.def.json new file mode 100644 index 0000000000..5a20902502 --- /dev/null +++ b/resources/definitions/goofoo_giant.def.json @@ -0,0 +1,15 @@ +{ + "name": "Goofoo Giant", + "version": 2, + "inherits": "goofoo_near", + "overrides": { + "machine_name": { "default_value": "Goofoo Giant" }, + "machine_width": { "default_value": 600 }, + "machine_depth": { "default_value": 600 }, + "machine_height": { "default_value": 1000 } + + }, + "metadata": { + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_max.def.json b/resources/definitions/goofoo_max.def.json new file mode 100644 index 0000000000..8a1ffad335 --- /dev/null +++ b/resources/definitions/goofoo_max.def.json @@ -0,0 +1,24 @@ +{ + "name": "Goofoo Max", + "version": 2, + "inherits": "goofoo_near", + "overrides": { + "machine_name": { "default_value": "Goofoo Max" }, + "machine_width": { "default_value": 600 }, + "machine_depth": { "default_value": 580 }, + "machine_height": { "default_value": 700 }, + "machine_head_with_fans_polygon": { "default_value": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ] + }, + + "gantry_height": { "value": 0 } + + }, + "metadata": { + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_mido.def.json b/resources/definitions/goofoo_mido.def.json new file mode 100644 index 0000000000..a4f8c23bad --- /dev/null +++ b/resources/definitions/goofoo_mido.def.json @@ -0,0 +1,15 @@ +{ + "name": "Goofoo Mido", + "version": 2, + "inherits": "goofoo_near", + "overrides": { + "machine_name": { "default_value": "Goofoo Mido" }, + "machine_width": { "default_value": 200 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 200 } + + }, + "metadata": { + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_miniplus.def.json b/resources/definitions/goofoo_miniplus.def.json new file mode 100644 index 0000000000..87ea5509a7 --- /dev/null +++ b/resources/definitions/goofoo_miniplus.def.json @@ -0,0 +1,15 @@ +{ + "name": "Goofoo Mini+", + "version": 2, + "inherits": "goofoo_near", + "overrides": { + "machine_name": { "default_value": "Goofoo Mini+" }, + "machine_width": { "default_value": 200 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 150 } + + }, + "metadata": { + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_near.def.json b/resources/definitions/goofoo_near.def.json new file mode 100644 index 0000000000..073e44a751 --- /dev/null +++ b/resources/definitions/goofoo_near.def.json @@ -0,0 +1,9 @@ +{ + "name": "Goofoo Near", + "version": 2, + "inherits": "goofoo_base", + "metadata": { + "quality_definition": "goofoo_near", + "visible": false + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_nova.def.json b/resources/definitions/goofoo_nova.def.json new file mode 100644 index 0000000000..882669f663 --- /dev/null +++ b/resources/definitions/goofoo_nova.def.json @@ -0,0 +1,16 @@ +{ + "name": "Goofoo Nova", + "version": 2, + "inherits": "goofoo_near", + "overrides": { + "machine_name": { "default_value": "Goofoo Nova" }, + "machine_width": { "default_value": 280 }, + "machine_depth": { "default_value": 280 }, + "machine_height": { "default_value": 300 } + + }, + "metadata": { + "author": "goofoo", + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_open.def.json b/resources/definitions/goofoo_open.def.json new file mode 100644 index 0000000000..5349859809 --- /dev/null +++ b/resources/definitions/goofoo_open.def.json @@ -0,0 +1,21 @@ +{ + "name": "Goofoo Open", + "version": 2, + "inherits": "goofoo_base", + "metadata": { + "quality_definition": "goofoo_open", + "visible": false, + "exclude_materials": [ + "goofoo_bronze_pla", + "goofoo_peek", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "goofoo_pa_cf", + "goofoo_pc", + "goofoo_pa", + "goofoo_asa", + "goofoo_abs" + ] + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_plus.def.json b/resources/definitions/goofoo_plus.def.json new file mode 100644 index 0000000000..cf95d5b174 --- /dev/null +++ b/resources/definitions/goofoo_plus.def.json @@ -0,0 +1,15 @@ +{ + "name": "Goofoo Plus", + "version": 2, + "inherits": "goofoo_near", + "overrides": { + "machine_name": { "default_value": "Goofoo Plus" }, + "machine_width": { "default_value": 360 }, + "machine_depth": { "default_value": 360 }, + "machine_height": { "default_value": 400 } + + }, + "metadata": { + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_small.def.json b/resources/definitions/goofoo_small.def.json new file mode 100644 index 0000000000..4c919e9398 --- /dev/null +++ b/resources/definitions/goofoo_small.def.json @@ -0,0 +1,23 @@ +{ + "name": "Goofoo Small", + "version": 2, + "inherits": "goofoo_base", + "metadata": { + "quality_definition": "goofoo_small", + "visible": false, + "exclude_materials": [ + "goofoo_bronze_pla", + "goofoo_peek", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "goofoo_pa_cf", + "goofoo_pc", + "goofoo_pa", + "goofoo_asa", + "goofoo_abs", + "goofoo_pva", + "goofoo_hips" + ] + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_t-one.def.json b/resources/definitions/goofoo_t-one.def.json new file mode 100644 index 0000000000..e67f1efa72 --- /dev/null +++ b/resources/definitions/goofoo_t-one.def.json @@ -0,0 +1,36 @@ +{ + "name": "Goofoo T-one", + "version": 2, + "inherits": "goofoo_far", + "overrides": { + "machine_name": { "default_value": "Goofoo T-one" }, + "machine_width": { "default_value": 200 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 150 }, + "machine_extruder_count": { + "default_value": 2 + } + }, + "metadata": { + "machine_extruder_trains": { + "0": "goofoo_tone_1st", + "1": "goofoo_tone_2st" + }, + "exclude_materials": [ + "goofoo_bronze_pla", + "goofoo_peek", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "goofoo_pa_cf", + "goofoo_pc", + "goofoo_pa", + "goofoo_asa", + "goofoo_abs", + "goofoo_pva", + "goofoo_hips", + "goofoo_pva" + ], + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_tiny.def.json b/resources/definitions/goofoo_tiny.def.json new file mode 100644 index 0000000000..0b15ab64d1 --- /dev/null +++ b/resources/definitions/goofoo_tiny.def.json @@ -0,0 +1,16 @@ +{ + "name": "Goofoo Tiny", + "version": 2, + "inherits": "goofoo_small", + "overrides": { + "machine_name": { "default_value": "Goofoo Tiny" }, + "machine_width": { "default_value": 100 }, + "machine_depth": { "default_value": 100 }, + "machine_height": { "default_value": 100 }, + "machine_heated_bed": { "default_value": false }, + "raft_margin": { "default_value": 5 } + }, + "metadata": { + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/goofoo_tinyplus.def.json b/resources/definitions/goofoo_tinyplus.def.json new file mode 100644 index 0000000000..82557cc260 --- /dev/null +++ b/resources/definitions/goofoo_tinyplus.def.json @@ -0,0 +1,16 @@ +{ + "name": "Goofoo Tiny+", + "version": 2, + "inherits": "goofoo_small", + "overrides": { + "machine_name": { "default_value": "Goofoo Tiny+" }, + "machine_width": { "default_value": 120 }, + "machine_depth": { "default_value": 120 }, + "machine_height": { "default_value": 180 }, + "raft_margin": { "default_value": 5 }, + "machine_heated_bed": { "default_value": false } + }, + "metadata": { + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/renkforce_basic3.def.json b/resources/definitions/renkforce_basic3.def.json new file mode 100644 index 0000000000..98b355bd53 --- /dev/null +++ b/resources/definitions/renkforce_basic3.def.json @@ -0,0 +1,17 @@ +{ + "name": "Renkforce Basic 3", + "version": 2, + "inherits": "goofoo_small", + "overrides": { + "machine_name": { "default_value": "Renkforce Basic 3" }, + "machine_width": { "default_value": 120 }, + "machine_depth": { "default_value": 120 }, + "machine_height": { "default_value": 180 }, + "machine_heated_bed": { "default_value": false } + }, + "metadata": { + "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce", + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/renkforce_pro3.def.json b/resources/definitions/renkforce_pro3.def.json new file mode 100644 index 0000000000..0c40fdc509 --- /dev/null +++ b/resources/definitions/renkforce_pro3.def.json @@ -0,0 +1,17 @@ +{ + "name": "Renkforce Pro 3", + "version": 2, + "inherits": "goofoo_near", + "overrides": { + "machine_name": { "default_value": "Renkforce Pro 3" }, + "machine_width": { "default_value": 200 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 150 } + + }, + "metadata": { + "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce", + "visible": true + } +} \ No newline at end of file diff --git a/resources/definitions/renkforce_pro6.def.json b/resources/definitions/renkforce_pro6.def.json new file mode 100644 index 0000000000..63560506ea --- /dev/null +++ b/resources/definitions/renkforce_pro6.def.json @@ -0,0 +1,17 @@ +{ + "name": "Renkforce Pro 6", + "version": 2, + "inherits": "goofoo_near", + "overrides": { + "machine_name": { "default_value": "Renkforce Pro 6" }, + "machine_width": { "default_value": 200 }, + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 200 } + + }, + "metadata": { + "author": "Simon Peter (based on RF100.ini by Conrad Electronic SE)", + "manufacturer": "Renkforce", + "visible": true + } +} \ No newline at end of file diff --git a/resources/extruders/goofoo_base_extruder.def.json b/resources/extruders/goofoo_base_extruder.def.json new file mode 100644 index 0000000000..453989e961 --- /dev/null +++ b/resources/extruders/goofoo_base_extruder.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "goofoo_base", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + + } +} diff --git a/resources/extruders/goofoo_gemini_1st.def.json b/resources/extruders/goofoo_gemini_1st.def.json new file mode 100644 index 0000000000..7eefc49579 --- /dev/null +++ b/resources/extruders/goofoo_gemini_1st.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "goofoo_gemini", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + + } +} diff --git a/resources/extruders/goofoo_gemini_2st.def.json b/resources/extruders/goofoo_gemini_2st.def.json new file mode 100644 index 0000000000..35bc765526 --- /dev/null +++ b/resources/extruders/goofoo_gemini_2st.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": { + "machine": "goofoo_gemini", + "position": "1" + }, + + "overrides": { + "extruder_nr": { + "default_value": 1, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + + } +} diff --git a/resources/extruders/goofoo_tone_1st.def.json b/resources/extruders/goofoo_tone_1st.def.json new file mode 100644 index 0000000000..e4594301a8 --- /dev/null +++ b/resources/extruders/goofoo_tone_1st.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "goofoo_t-one", + "position": "0" + }, + + "overrides": { + "extruder_nr": { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + + } +} diff --git a/resources/extruders/goofoo_tone_2st.def.json b/resources/extruders/goofoo_tone_2st.def.json new file mode 100644 index 0000000000..3f07ac5d33 --- /dev/null +++ b/resources/extruders/goofoo_tone_2st.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": { + "machine": "goofoo_t-one", + "position": "1" + }, + + "overrides": { + "extruder_nr": { + "default_value": 1, + "maximum_value": "1" + }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + + } +} diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg new file mode 100644 index 0000000000..db98493872 --- /dev/null +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_abs +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +cool_fan_enabled = False +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg new file mode 100644 index 0000000000..4dd35ea705 --- /dev/null +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_abs +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +cool_fan_enabled = False +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg new file mode 100644 index 0000000000..66c043cc26 --- /dev/null +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_abs +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +cool_fan_enabled = False +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg new file mode 100644 index 0000000000..8e608e2751 --- /dev/null +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_abs +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +cool_fan_enabled = False +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg new file mode 100644 index 0000000000..0722e16b24 --- /dev/null +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_asa +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +cool_fan_enabled = False +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg new file mode 100644 index 0000000000..f358aa16a5 --- /dev/null +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_asa +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +cool_fan_enabled = False +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg new file mode 100644 index 0000000000..10019fa830 --- /dev/null +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_asa +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +cool_fan_enabled = False +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg new file mode 100644 index 0000000000..60855f3f72 --- /dev/null +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_asa +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +cool_fan_enabled = False +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg new file mode 100644 index 0000000000..b5cfa2afe8 --- /dev/null +++ b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +weight = -1 +global_quality = True + +[values] +layer_height = 0.15 +layer_height_0 = 0.25 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*6 +support_interface_height = =layer_height*8 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg new file mode 100644 index 0000000000..0055d3f330 --- /dev/null +++ b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*6 +support_interface_height = =layer_height*12 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg new file mode 100644 index 0000000000..dd2984d73c --- /dev/null +++ b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +weight = -3 +global_quality = True + +[values] +layer_height = 0.20 +layer_height_0 = 0.3 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*4 +support_interface_height = =layer_height*5 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg new file mode 100644 index 0000000000..4ee3ffbb3e --- /dev/null +++ b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*5 +support_interface_height = =layer_height*6 +adaptive_layer_height_enabled = true +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg new file mode 100644 index 0000000000..2b9312b121 --- /dev/null +++ b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +weight = -1 +global_quality = True + +[values] +layer_height = 0.15 +layer_height_0 = 0.25 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*6 +support_interface_height = =layer_height*8 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg new file mode 100644 index 0000000000..5b9d88244d --- /dev/null +++ b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*6 +support_interface_height = =layer_height*12 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg new file mode 100644 index 0000000000..6a30280f67 --- /dev/null +++ b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +weight = -3 +global_quality = True + +[values] +layer_height = 0.20 +layer_height_0 = 0.3 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*4 +support_interface_height = =layer_height*5 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg new file mode 100644 index 0000000000..e3396f5920 --- /dev/null +++ b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*5 +support_interface_height = =layer_height*6 +adaptive_layer_height_enabled = true +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg new file mode 100644 index 0000000000..fc4ddff5c8 --- /dev/null +++ b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +weight = -1 +global_quality = True + +[values] +layer_height = 0.15 +layer_height_0 = 0.25 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*6 +support_interface_height = =layer_height*8 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg new file mode 100644 index 0000000000..f4a5197592 --- /dev/null +++ b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*6 +support_interface_height = =layer_height*12 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg new file mode 100644 index 0000000000..fd048b7fdd --- /dev/null +++ b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +weight = -3 +global_quality = True + +[values] +layer_height = 0.20 +layer_height_0 = 0.3 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*4 +support_interface_height = =layer_height*5 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg new file mode 100644 index 0000000000..cb924b3928 --- /dev/null +++ b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*5 +support_interface_height = =layer_height*6 +adaptive_layer_height_enabled = true +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg new file mode 100644 index 0000000000..609b2e6af0 --- /dev/null +++ b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +weight = -1 +global_quality = True + +[values] +layer_height = 0.15 +layer_height_0 = 0.25 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*6 +support_interface_height = =layer_height*8 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg new file mode 100644 index 0000000000..1ab043152a --- /dev/null +++ b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +weight = 0 +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*6 +support_interface_height = =layer_height*12 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg new file mode 100644 index 0000000000..b775e41fb9 --- /dev/null +++ b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +weight = -3 +global_quality = True + +[values] +layer_height = 0.20 +layer_height_0 = 0.3 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*4 +support_interface_height = =layer_height*5 +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg new file mode 100644 index 0000000000..d4bc9c853c --- /dev/null +++ b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +weight = -2 +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.3 +top_bottom_thickness = 0.8 +wall_thickness = =line_width*5 +support_interface_height = =layer_height*6 +adaptive_layer_height_enabled = true +retraction_speed = 60 +cool_fan_enabled = True \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg new file mode 100644 index 0000000000..8dd4354efa --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg new file mode 100644 index 0000000000..f9d991474e --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg new file mode 100644 index 0000000000..fe520d21f4 --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg new file mode 100644 index 0000000000..3a6ce34d5f --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg new file mode 100644 index 0000000000..9e94323af2 --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg new file mode 100644 index 0000000000..d4fcbd1ffd --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg new file mode 100644 index 0000000000..2711715ce4 --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg new file mode 100644 index 0000000000..df9333e1d6 --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg new file mode 100644 index 0000000000..bc41abe93e --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg new file mode 100644 index 0000000000..7e8ca63eab --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg new file mode 100644 index 0000000000..8ec0097c41 --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg new file mode 100644 index 0000000000..502f946b48 --- /dev/null +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_hips +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg new file mode 100644 index 0000000000..7d427d320f --- /dev/null +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pa +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +retraction_amount = 6 diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg new file mode 100644 index 0000000000..b62da28e07 --- /dev/null +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pa +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg new file mode 100644 index 0000000000..d6390b5d47 --- /dev/null +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pa +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +retraction_amount = 4.5 diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg new file mode 100644 index 0000000000..33f01f7900 --- /dev/null +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pa +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg new file mode 100644 index 0000000000..6fe366078a --- /dev/null +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pa_cf +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg new file mode 100644 index 0000000000..a8fda496a8 --- /dev/null +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pa_cf +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg new file mode 100644 index 0000000000..8bdf264189 --- /dev/null +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pa_cf +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg new file mode 100644 index 0000000000..82822f7552 --- /dev/null +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pa_cf +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +adhesion_type = brim +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg new file mode 100644 index 0000000000..449249bd1d --- /dev/null +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_pc +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg new file mode 100644 index 0000000000..092500ebe7 --- /dev/null +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_pc +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg new file mode 100644 index 0000000000..065568128b --- /dev/null +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pc +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg new file mode 100644 index 0000000000..0d5eb04819 --- /dev/null +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pc +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg new file mode 100644 index 0000000000..dbba2c8da9 --- /dev/null +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_pc +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg new file mode 100644 index 0000000000..85582e1dbc --- /dev/null +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_pc +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg new file mode 100644 index 0000000000..1d0d0e277a --- /dev/null +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pc +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg new file mode 100644 index 0000000000..276b8b8dac --- /dev/null +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pc +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg new file mode 100644 index 0000000000..9fbab16a7b --- /dev/null +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_peek +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +cool_fan_enabled = False +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg new file mode 100644 index 0000000000..e492269551 --- /dev/null +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_peek +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +cool_fan_enabled = False +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg new file mode 100644 index 0000000000..f57615f286 --- /dev/null +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_peek +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +cool_fan_enabled = False +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg new file mode 100644 index 0000000000..f4722919e0 --- /dev/null +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_peek +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +cool_fan_enabled = False +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg new file mode 100644 index 0000000000..3d5e773c47 --- /dev/null +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_peek +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +cool_fan_enabled = False +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg new file mode 100644 index 0000000000..d88e76a0e4 --- /dev/null +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_peek +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +cool_fan_enabled = False +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg new file mode 100644 index 0000000000..c797b8e8a1 --- /dev/null +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_peek +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +cool_fan_enabled = False +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg new file mode 100644 index 0000000000..b963833997 --- /dev/null +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_peek +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +cool_fan_enabled = False +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..b3f5957fd3 --- /dev/null +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_layer_0 = 15 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg new file mode 100644 index 0000000000..2e2477a8b0 --- /dev/null +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_layer_0 = 15 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..3a1afe0da8 --- /dev/null +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_layer_0 = 15 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg new file mode 100644 index 0000000000..dfc3242624 --- /dev/null +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_layer_0 = 15 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..c90206a6bf --- /dev/null +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_layer_0 = 15 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg new file mode 100644 index 0000000000..ef8aca3bcc --- /dev/null +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg @@ -0,0 +1,18 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_layer_0 = 15 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg new file mode 100644 index 0000000000..3f10db1e3b --- /dev/null +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_layer_0 = 15 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg new file mode 100644 index 0000000000..2e32f555f7 --- /dev/null +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_petg +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_layer_0 = 15 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..4c14da8745 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..0f6d81fbe8 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..0bfc6d2819 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..08daac76c9 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..bec333ff61 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_bronze_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 1 +retraction_speed = 10 diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..2dcb5005a8 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_bronze_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 1 +retraction_speed = 10 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..8c02d54220 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_bronze_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 1 +retraction_speed = 10 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..de1c7e4370 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_bronze_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 1 +retraction_speed = 10 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..cefc9daff7 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..4943789a1b --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..789b01f664 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..e09c2c21e5 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..74e6028b99 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..c5568f6b31 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..9ba19e5450 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..62e89c7d9f --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..3be7cca700 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..30ebb39fe1 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..632183e93b --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..44d5f75516 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..8ffd6be2e5 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..f167eedae4 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..977d3d710c --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..6c0c253942 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..dab701a87d --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_bronze_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 1 +retraction_speed = 10 diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..ce26c1077e --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_bronze_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 1 +retraction_speed = 10 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..f6ba35e5e0 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_bronze_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 1 +retraction_speed = 10 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..8ef8bc753d --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_bronze_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 1 +retraction_speed = 10 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..ac3191b711 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..fd8b3cf81b --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..671ea1db9d --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..f1677653cf --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..a719640114 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..fc71303ce1 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..e92bcff3b2 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..5666f3abea --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 4.5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..61c824e3f5 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..d1beccaf4c --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..42a4c8b9be --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..a6a49094cf --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 5 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..6bbddd28a8 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 60 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..ca9144388e --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 60 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..e2db78058a --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 60 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..ffade74aaa --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 60 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..dd2377e171 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..1b50f1fff1 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..16def63088 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..88ebb60b5d --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..569203d3a9 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..e1b02e7a5b --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..f199f3a27d --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..ac2ce648a6 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 70 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..a8f9e3b277 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 60 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..4b8c022cfd --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 60 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..9260779304 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 60 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..6067154670 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = skirt +retraction_amount = 6 +material_bed_temperature = 60 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..fe3e712095 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..0b4cc8c33d --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..a2ef9571d1 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..e5ae17b358 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..43436b1fe2 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..ad61ac4516 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..982a051025 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..e1947d3b2c --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_emarble_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..e89f7ef398 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..3986432256 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..6bc74a4fd9 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..5546fc6c04 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_esilk_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg new file mode 100644 index 0000000000..9983ca25e0 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg new file mode 100644 index 0000000000..72e9b1aed2 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg new file mode 100644 index 0000000000..5c4bbbd840 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg new file mode 100644 index 0000000000..6c5bce0bf0 --- /dev/null +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg @@ -0,0 +1,16 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_small + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_wood_pla +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = raft +retraction_amount = 6 \ No newline at end of file diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg new file mode 100644 index 0000000000..52b57f65b9 --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg new file mode 100644 index 0000000000..8958e9c4a2 --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg new file mode 100644 index 0000000000..dae9ff6d40 --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg new file mode 100644 index 0000000000..c8a6ab287e --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg new file mode 100644 index 0000000000..7bbe273435 --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg new file mode 100644 index 0000000000..4af057c98c --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg new file mode 100644 index 0000000000..0d42f6fece --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg new file mode 100644 index 0000000000..c6a5522e78 --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg @@ -0,0 +1,20 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg new file mode 100644 index 0000000000..20d31c5d3a --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True +material_bed_temperature = 70 diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg new file mode 100644 index 0000000000..0a5e9ad056 --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True +material_bed_temperature = 70 diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg new file mode 100644 index 0000000000..f1bb2a1fd0 --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True +material_bed_temperature = 70 diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg new file mode 100644 index 0000000000..36026762ee --- /dev/null +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg @@ -0,0 +1,21 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_open + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_pva +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*2 +adhesion_type = none +support_pattern = grid +support_infill_rate = 50 +support_brim_enable = True +support_interface_enable = True +support_enable = True +material_bed_temperature = 70 diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg new file mode 100644 index 0000000000..920e0372d7 --- /dev/null +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_tpe_83a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg new file mode 100644 index 0000000000..b8d2d3f7ea --- /dev/null +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_tpe_83a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg new file mode 100644 index 0000000000..176bc7f0c7 --- /dev/null +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_tpe_83a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg new file mode 100644 index 0000000000..4fc798296f --- /dev/null +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_tpe_83a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg new file mode 100644 index 0000000000..03c646dd37 --- /dev/null +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_tpe_83a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg new file mode 100644 index 0000000000..28351b1e2c --- /dev/null +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_tpe_83a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg new file mode 100644 index 0000000000..49c4e26db3 --- /dev/null +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_tpe_83a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg new file mode 100644 index 0000000000..c4f839ee74 --- /dev/null +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_tpe_83a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg new file mode 100644 index 0000000000..23db02803a --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_tpu_87a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg new file mode 100644 index 0000000000..4fb6d626b3 --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_tpu_87a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*3 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg new file mode 100644 index 0000000000..a367b8f81c --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_tpu_87a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg new file mode 100644 index 0000000000..d7aa4d5fec --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_tpu_95a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*3 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg new file mode 100644 index 0000000000..7e95cdb13b --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_tpu_95a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg new file mode 100644 index 0000000000..5886ce5721 --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_tpu_95a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg new file mode 100644 index 0000000000..5643a9459a --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_far + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_tpu_95a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg new file mode 100644 index 0000000000..7d1e632e0c --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_tpu_87a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg new file mode 100644 index 0000000000..5de2f6f438 --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_tpu_87a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*3 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg new file mode 100644 index 0000000000..1343ea9172 --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_tpu_87a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg new file mode 100644 index 0000000000..b6e6bcb6b2 --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Draft Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = draft +material = goofoo_tpu_95a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*3 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg new file mode 100644 index 0000000000..4f8bfbfc22 --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Extra Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = efine +material = goofoo_tpu_95a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg new file mode 100644 index 0000000000..1149e159b8 --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Fine Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = fine +material = goofoo_tpu_95a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg new file mode 100644 index 0000000000..23c9cba6ef --- /dev/null +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +version = 4 +name = Standard Quality +definition = goofoo_near + +[metadata] +setting_version = 17 +type = quality +quality_type = normal +material = goofoo_tpu_95a +variant = 0.4mm Nozzle + +[values] +wall_thickness = =line_width*4 +speed_print = 20 +speed_layer_0 = 10 +adhesion_type = skirt \ No newline at end of file diff --git a/resources/variants/goofoo_base_0.4.inst.cfg b/resources/variants/goofoo_base_0.4.inst.cfg new file mode 100644 index 0000000000..e3d0e539ef --- /dev/null +++ b/resources/variants/goofoo_base_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_base + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_e-one_0.2.inst.cfg b/resources/variants/goofoo_e-one_0.2.inst.cfg new file mode 100644 index 0000000000..cb7be65501 --- /dev/null +++ b/resources/variants/goofoo_e-one_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_e-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_e-one_0.4.inst.cfg b/resources/variants/goofoo_e-one_0.4.inst.cfg new file mode 100644 index 0000000000..d0bb8e2dd1 --- /dev/null +++ b/resources/variants/goofoo_e-one_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_e-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_e-one_0.6.inst.cfg b/resources/variants/goofoo_e-one_0.6.inst.cfg new file mode 100644 index 0000000000..4cb22fb14a --- /dev/null +++ b/resources/variants/goofoo_e-one_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_e-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_e-one_0.8.inst.cfg b/resources/variants/goofoo_e-one_0.8.inst.cfg new file mode 100644 index 0000000000..44e4bebb4e --- /dev/null +++ b/resources/variants/goofoo_e-one_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_e-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_e-one_1.0.inst.cfg b/resources/variants/goofoo_e-one_1.0.inst.cfg new file mode 100644 index 0000000000..e8ccee3a60 --- /dev/null +++ b/resources/variants/goofoo_e-one_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_e-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_gemini_0.2.inst.cfg b/resources/variants/goofoo_gemini_0.2.inst.cfg new file mode 100644 index 0000000000..c512cea3ef --- /dev/null +++ b/resources/variants/goofoo_gemini_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_gemini + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_gemini_0.4.inst.cfg b/resources/variants/goofoo_gemini_0.4.inst.cfg new file mode 100644 index 0000000000..f9cce304a2 --- /dev/null +++ b/resources/variants/goofoo_gemini_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_gemini + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_gemini_0.6.inst.cfg b/resources/variants/goofoo_gemini_0.6.inst.cfg new file mode 100644 index 0000000000..c89168bc9d --- /dev/null +++ b/resources/variants/goofoo_gemini_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_gemini + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_gemini_0.8.inst.cfg b/resources/variants/goofoo_gemini_0.8.inst.cfg new file mode 100644 index 0000000000..8846dc3966 --- /dev/null +++ b/resources/variants/goofoo_gemini_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_gemini + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_gemini_1.0.inst.cfg b/resources/variants/goofoo_gemini_1.0.inst.cfg new file mode 100644 index 0000000000..bc006589d8 --- /dev/null +++ b/resources/variants/goofoo_gemini_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_gemini + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_giant_0.2.inst.cfg b/resources/variants/goofoo_giant_0.2.inst.cfg new file mode 100644 index 0000000000..79f11d6a19 --- /dev/null +++ b/resources/variants/goofoo_giant_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_giant + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_giant_0.4.inst.cfg b/resources/variants/goofoo_giant_0.4.inst.cfg new file mode 100644 index 0000000000..514de79aef --- /dev/null +++ b/resources/variants/goofoo_giant_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_giant + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_giant_0.6.inst.cfg b/resources/variants/goofoo_giant_0.6.inst.cfg new file mode 100644 index 0000000000..9327fef669 --- /dev/null +++ b/resources/variants/goofoo_giant_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_giant + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_giant_0.8.inst.cfg b/resources/variants/goofoo_giant_0.8.inst.cfg new file mode 100644 index 0000000000..ce96cafb24 --- /dev/null +++ b/resources/variants/goofoo_giant_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_giant + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_giant_1.0.inst.cfg b/resources/variants/goofoo_giant_1.0.inst.cfg new file mode 100644 index 0000000000..d8bac0ab65 --- /dev/null +++ b/resources/variants/goofoo_giant_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_giant + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_max_0.2.inst.cfg b/resources/variants/goofoo_max_0.2.inst.cfg new file mode 100644 index 0000000000..bdb151090b --- /dev/null +++ b/resources/variants/goofoo_max_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_max + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_max_0.4.inst.cfg b/resources/variants/goofoo_max_0.4.inst.cfg new file mode 100644 index 0000000000..3e550e4b79 --- /dev/null +++ b/resources/variants/goofoo_max_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_max + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_max_0.6.inst.cfg b/resources/variants/goofoo_max_0.6.inst.cfg new file mode 100644 index 0000000000..3d14181253 --- /dev/null +++ b/resources/variants/goofoo_max_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_max + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_max_0.8.inst.cfg b/resources/variants/goofoo_max_0.8.inst.cfg new file mode 100644 index 0000000000..286a7d16d8 --- /dev/null +++ b/resources/variants/goofoo_max_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_max + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_max_1.0.inst.cfg b/resources/variants/goofoo_max_1.0.inst.cfg new file mode 100644 index 0000000000..68aad8b62f --- /dev/null +++ b/resources/variants/goofoo_max_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_max + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_mido_0.2.inst.cfg b/resources/variants/goofoo_mido_0.2.inst.cfg new file mode 100644 index 0000000000..560f63048c --- /dev/null +++ b/resources/variants/goofoo_mido_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_mido + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_mido_0.4.inst.cfg b/resources/variants/goofoo_mido_0.4.inst.cfg new file mode 100644 index 0000000000..f87c98c1d5 --- /dev/null +++ b/resources/variants/goofoo_mido_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_mido + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_mido_0.6.inst.cfg b/resources/variants/goofoo_mido_0.6.inst.cfg new file mode 100644 index 0000000000..61d5755106 --- /dev/null +++ b/resources/variants/goofoo_mido_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_mido + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_mido_0.8.inst.cfg b/resources/variants/goofoo_mido_0.8.inst.cfg new file mode 100644 index 0000000000..2d48966a05 --- /dev/null +++ b/resources/variants/goofoo_mido_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_mido + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_mido_1.0.inst.cfg b/resources/variants/goofoo_mido_1.0.inst.cfg new file mode 100644 index 0000000000..bfb9c8568b --- /dev/null +++ b/resources/variants/goofoo_mido_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_mido + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_miniplus_0.2.inst.cfg b/resources/variants/goofoo_miniplus_0.2.inst.cfg new file mode 100644 index 0000000000..e32d06e234 --- /dev/null +++ b/resources/variants/goofoo_miniplus_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_miniplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_miniplus_0.4.inst.cfg b/resources/variants/goofoo_miniplus_0.4.inst.cfg new file mode 100644 index 0000000000..256006bb7c --- /dev/null +++ b/resources/variants/goofoo_miniplus_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_miniplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_miniplus_0.6.inst.cfg b/resources/variants/goofoo_miniplus_0.6.inst.cfg new file mode 100644 index 0000000000..cc6b70810f --- /dev/null +++ b/resources/variants/goofoo_miniplus_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_miniplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_miniplus_0.8.inst.cfg b/resources/variants/goofoo_miniplus_0.8.inst.cfg new file mode 100644 index 0000000000..d8e752289d --- /dev/null +++ b/resources/variants/goofoo_miniplus_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_miniplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_miniplus_1.0.inst.cfg b/resources/variants/goofoo_miniplus_1.0.inst.cfg new file mode 100644 index 0000000000..e51c8b36b1 --- /dev/null +++ b/resources/variants/goofoo_miniplus_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_miniplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_nova_0.2.inst.cfg b/resources/variants/goofoo_nova_0.2.inst.cfg new file mode 100644 index 0000000000..53815ef7a9 --- /dev/null +++ b/resources/variants/goofoo_nova_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_nova + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_nova_0.4.inst.cfg b/resources/variants/goofoo_nova_0.4.inst.cfg new file mode 100644 index 0000000000..52f45ae3b0 --- /dev/null +++ b/resources/variants/goofoo_nova_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_nova + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_nova_0.6.inst.cfg b/resources/variants/goofoo_nova_0.6.inst.cfg new file mode 100644 index 0000000000..3817e42ec4 --- /dev/null +++ b/resources/variants/goofoo_nova_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_nova + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_nova_0.8.inst.cfg b/resources/variants/goofoo_nova_0.8.inst.cfg new file mode 100644 index 0000000000..9b7cbe456e --- /dev/null +++ b/resources/variants/goofoo_nova_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_nova + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_nova_1.0.inst.cfg b/resources/variants/goofoo_nova_1.0.inst.cfg new file mode 100644 index 0000000000..27cde50c8e --- /dev/null +++ b/resources/variants/goofoo_nova_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_nova + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_plus_0.2.inst.cfg b/resources/variants/goofoo_plus_0.2.inst.cfg new file mode 100644 index 0000000000..cfa5727857 --- /dev/null +++ b/resources/variants/goofoo_plus_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_plus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_plus_0.4.inst.cfg b/resources/variants/goofoo_plus_0.4.inst.cfg new file mode 100644 index 0000000000..3dcfd10938 --- /dev/null +++ b/resources/variants/goofoo_plus_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_plus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_plus_0.6.inst.cfg b/resources/variants/goofoo_plus_0.6.inst.cfg new file mode 100644 index 0000000000..7b9c243fea --- /dev/null +++ b/resources/variants/goofoo_plus_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_plus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_plus_0.8.inst.cfg b/resources/variants/goofoo_plus_0.8.inst.cfg new file mode 100644 index 0000000000..1a71e694dd --- /dev/null +++ b/resources/variants/goofoo_plus_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_plus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_plus_1.0.inst.cfg b/resources/variants/goofoo_plus_1.0.inst.cfg new file mode 100644 index 0000000000..7cbcbf93e8 --- /dev/null +++ b/resources/variants/goofoo_plus_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_plus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_t-one_0.2.inst.cfg b/resources/variants/goofoo_t-one_0.2.inst.cfg new file mode 100644 index 0000000000..a966fdc57d --- /dev/null +++ b/resources/variants/goofoo_t-one_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_t-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_t-one_0.4.inst.cfg b/resources/variants/goofoo_t-one_0.4.inst.cfg new file mode 100644 index 0000000000..779d75cc43 --- /dev/null +++ b/resources/variants/goofoo_t-one_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_t-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_t-one_0.6.inst.cfg b/resources/variants/goofoo_t-one_0.6.inst.cfg new file mode 100644 index 0000000000..5d8e657107 --- /dev/null +++ b/resources/variants/goofoo_t-one_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_t-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_t-one_0.8.inst.cfg b/resources/variants/goofoo_t-one_0.8.inst.cfg new file mode 100644 index 0000000000..bbbba8ccc4 --- /dev/null +++ b/resources/variants/goofoo_t-one_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_t-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_t-one_1.0.inst.cfg b/resources/variants/goofoo_t-one_1.0.inst.cfg new file mode 100644 index 0000000000..559704cec0 --- /dev/null +++ b/resources/variants/goofoo_t-one_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_t-one + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_tiny_0.2.inst.cfg b/resources/variants/goofoo_tiny_0.2.inst.cfg new file mode 100644 index 0000000000..bf99b7570a --- /dev/null +++ b/resources/variants/goofoo_tiny_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_tiny + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_tiny_0.4.inst.cfg b/resources/variants/goofoo_tiny_0.4.inst.cfg new file mode 100644 index 0000000000..ac662dff03 --- /dev/null +++ b/resources/variants/goofoo_tiny_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_tiny + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_tiny_0.6.inst.cfg b/resources/variants/goofoo_tiny_0.6.inst.cfg new file mode 100644 index 0000000000..5336ef5524 --- /dev/null +++ b/resources/variants/goofoo_tiny_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_tiny + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_tiny_0.8.inst.cfg b/resources/variants/goofoo_tiny_0.8.inst.cfg new file mode 100644 index 0000000000..dbcb3e9820 --- /dev/null +++ b/resources/variants/goofoo_tiny_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_tiny + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_tiny_1.0.inst.cfg b/resources/variants/goofoo_tiny_1.0.inst.cfg new file mode 100644 index 0000000000..4d367692c9 --- /dev/null +++ b/resources/variants/goofoo_tiny_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_tiny + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/goofoo_tinyplus_0.2.inst.cfg b/resources/variants/goofoo_tinyplus_0.2.inst.cfg new file mode 100644 index 0000000000..1459b6bb53 --- /dev/null +++ b/resources/variants/goofoo_tinyplus_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = goofoo_tinyplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/goofoo_tinyplus_0.4.inst.cfg b/resources/variants/goofoo_tinyplus_0.4.inst.cfg new file mode 100644 index 0000000000..75e32bc896 --- /dev/null +++ b/resources/variants/goofoo_tinyplus_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = goofoo_tinyplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/goofoo_tinyplus_0.6.inst.cfg b/resources/variants/goofoo_tinyplus_0.6.inst.cfg new file mode 100644 index 0000000000..95c71bdcf8 --- /dev/null +++ b/resources/variants/goofoo_tinyplus_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = goofoo_tinyplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/goofoo_tinyplus_0.8.inst.cfg b/resources/variants/goofoo_tinyplus_0.8.inst.cfg new file mode 100644 index 0000000000..b9a93a9561 --- /dev/null +++ b/resources/variants/goofoo_tinyplus_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = goofoo_tinyplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/goofoo_tinyplus_1.0.inst.cfg b/resources/variants/goofoo_tinyplus_1.0.inst.cfg new file mode 100644 index 0000000000..eab9605a3a --- /dev/null +++ b/resources/variants/goofoo_tinyplus_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = goofoo_tinyplus + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/renkforce_basic3_0.2.inst.cfg b/resources/variants/renkforce_basic3_0.2.inst.cfg new file mode 100644 index 0000000000..56179dde96 --- /dev/null +++ b/resources/variants/renkforce_basic3_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = renkforce_basic3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/renkforce_basic3_0.4.inst.cfg b/resources/variants/renkforce_basic3_0.4.inst.cfg new file mode 100644 index 0000000000..3d2f509215 --- /dev/null +++ b/resources/variants/renkforce_basic3_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = renkforce_basic3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/renkforce_basic3_0.6.inst.cfg b/resources/variants/renkforce_basic3_0.6.inst.cfg new file mode 100644 index 0000000000..6f5866df2f --- /dev/null +++ b/resources/variants/renkforce_basic3_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = renkforce_basic3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/renkforce_basic3_0.8.inst.cfg b/resources/variants/renkforce_basic3_0.8.inst.cfg new file mode 100644 index 0000000000..db1bdce2dd --- /dev/null +++ b/resources/variants/renkforce_basic3_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = renkforce_basic3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/renkforce_basic3_1.0.inst.cfg b/resources/variants/renkforce_basic3_1.0.inst.cfg new file mode 100644 index 0000000000..3780573db0 --- /dev/null +++ b/resources/variants/renkforce_basic3_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = renkforce_basic3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/renkforce_pro3_0.2.inst.cfg b/resources/variants/renkforce_pro3_0.2.inst.cfg new file mode 100644 index 0000000000..40dc654978 --- /dev/null +++ b/resources/variants/renkforce_pro3_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.2mm Nozzle +version = 4 +definition = renkforce_pro3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/renkforce_pro3_0.4.inst.cfg b/resources/variants/renkforce_pro3_0.4.inst.cfg new file mode 100644 index 0000000000..d92d8b58fc --- /dev/null +++ b/resources/variants/renkforce_pro3_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = renkforce_pro3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/renkforce_pro3_0.6.inst.cfg b/resources/variants/renkforce_pro3_0.6.inst.cfg new file mode 100644 index 0000000000..a32f42617f --- /dev/null +++ b/resources/variants/renkforce_pro3_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = renkforce_pro3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/renkforce_pro3_0.8.inst.cfg b/resources/variants/renkforce_pro3_0.8.inst.cfg new file mode 100644 index 0000000000..d19df4598b --- /dev/null +++ b/resources/variants/renkforce_pro3_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = renkforce_pro3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/renkforce_pro3_1.0.inst.cfg b/resources/variants/renkforce_pro3_1.0.inst.cfg new file mode 100644 index 0000000000..aa5dab10ea --- /dev/null +++ b/resources/variants/renkforce_pro3_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = renkforce_pro3 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0 diff --git a/resources/variants/renkforce_pro6_0.2.inst.cfg b/resources/variants/renkforce_pro6_0.2.inst.cfg new file mode 100644 index 0000000000..1e7e4763f4 --- /dev/null +++ b/resources/variants/renkforce_pro6_0.2.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = renkforce_pro6 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.2 diff --git a/resources/variants/renkforce_pro6_0.4.inst.cfg b/resources/variants/renkforce_pro6_0.4.inst.cfg new file mode 100644 index 0000000000..e4ddcdde3d --- /dev/null +++ b/resources/variants/renkforce_pro6_0.4.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.4mm Nozzle +version = 4 +definition = renkforce_pro6 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.4 diff --git a/resources/variants/renkforce_pro6_0.6.inst.cfg b/resources/variants/renkforce_pro6_0.6.inst.cfg new file mode 100644 index 0000000000..20acd99cf4 --- /dev/null +++ b/resources/variants/renkforce_pro6_0.6.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.6mm Nozzle +version = 4 +definition = renkforce_pro6 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.6 diff --git a/resources/variants/renkforce_pro6_0.8.inst.cfg b/resources/variants/renkforce_pro6_0.8.inst.cfg new file mode 100644 index 0000000000..a9cebf4cc7 --- /dev/null +++ b/resources/variants/renkforce_pro6_0.8.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 0.8mm Nozzle +version = 4 +definition = renkforce_pro6 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 0.8 diff --git a/resources/variants/renkforce_pro6_1.0.inst.cfg b/resources/variants/renkforce_pro6_1.0.inst.cfg new file mode 100644 index 0000000000..cb869fef66 --- /dev/null +++ b/resources/variants/renkforce_pro6_1.0.inst.cfg @@ -0,0 +1,12 @@ +[general] +name = 1.0mm Nozzle +version = 4 +definition = renkforce_pro6 + +[metadata] +setting_version = 17 +type = variant +hardware_type = nozzle + +[values] +machine_nozzle_size = 1.0