From 41499bb7c50ce285252e4577bcad309cebf3fc42 Mon Sep 17 00:00:00 2001 From: eskeyaar Date: Fri, 29 May 2020 21:06:59 +0100 Subject: [PATCH 1/3] Update plugin.json --- plugins/GXWriter/plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GXWriter/plugin.json b/plugins/GXWriter/plugin.json index 9d58e2e..9278309 100644 --- a/plugins/GXWriter/plugin.json +++ b/plugins/GXWriter/plugin.json @@ -4,6 +4,6 @@ "version": "1.0.0", "description": "Add tools to help FlashForge Finder users use Cura as a slicer.", "api": "7.1.0", - "supported_sdk_versions": ["5.0.0", "6.0.0", "7.0.0"], + "supported_sdk_versions": ["5.0.0", "6.0.0", "7.0.0", "7.1.0"], "i18n-catalog": "cura" } From 8326aaff06ea8123b24ea159555baf53d10446c9 Mon Sep 17 00:00:00 2001 From: eskeyaar Date: Fri, 29 May 2020 21:08:00 +0100 Subject: [PATCH 2/3] Update plugin.json --- plugins/GXWriter/plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GXWriter/plugin.json b/plugins/GXWriter/plugin.json index 9278309..9d58e2e 100644 --- a/plugins/GXWriter/plugin.json +++ b/plugins/GXWriter/plugin.json @@ -4,6 +4,6 @@ "version": "1.0.0", "description": "Add tools to help FlashForge Finder users use Cura as a slicer.", "api": "7.1.0", - "supported_sdk_versions": ["5.0.0", "6.0.0", "7.0.0", "7.1.0"], + "supported_sdk_versions": ["5.0.0", "6.0.0", "7.0.0"], "i18n-catalog": "cura" } From 1d67ccffbd008c878c6f791288294f010f082d51 Mon Sep 17 00:00:00 2001 From: eskeyaar Date: Thu, 15 Feb 2024 15:57:45 +0530 Subject: [PATCH 3/3] Updated code to move bed down --- .../FlashforgeFinderIntegration/printer/defs/finder.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/FlashforgeFinderIntegration/printer/defs/finder.def.json b/plugins/FlashforgeFinderIntegration/printer/defs/finder.def.json index 8bec3fb..e6307c7 100644 --- a/plugins/FlashforgeFinderIntegration/printer/defs/finder.def.json +++ b/plugins/FlashforgeFinderIntegration/printer/defs/finder.def.json @@ -23,7 +23,7 @@ "machine_start_gcode": {"default_value": "M140 S0\nM104 S{material_print_temperature} T0\nM104 S0 T1\nM107\nG90\nG28\nM132 X Y Z A B\nG1 Z50.00 F400\nG161 X Y F3300\nM6 T0\nM907 X100 Y100 Z40 A80 B20\nM108 T0\nG1 Z.20 F400"}, "machine_end_gcode": { - "default_value": "M104 S0 T0\nG28 X Y\nM132 X Y Z A B\nG91\nM18 " + "default_value": "M104 S0 T0 ; cool down extruder\nG1 Z140 F3300 ; send Z axis to bottom of machine\nM107 ; disable cooling fan\nG28 X0 Y0 ; home XY axes\nM18 ; disable stepper" }, "machine_width": { "default_value":141.3 }, "machine_depth": { "default_value": 141.3 },