From 788bd7c1dbf3f04ec25e2d67689843a2490dd212 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 25 Jun 2024 22:26:03 +0200 Subject: [PATCH] V1.0.378 --- CHANGELOG.txt | 5 +++-- index.js | 4 ++++ package.json | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 9f09db9..b5fb4de 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,11 +1,12 @@ +v1.0.378: +- Test fix for 4X hanging on DTR connect v1.0.377: - Fixed Grbl Settings Description for $14, $486 - Fixed USB descriptor for Pico - Removed remaining Smoothieware leftovers - Fixed issue #360: Clear queue on port.disconnect -- Fixed issue #359 +- Fixed issue #359: UI update downgrade to 3 axes - Fixed issue #330: Re-Enabled DTR toggle for native USB support - v1.0.376: - Updated installer End User License Agreement v1.0.375: diff --git a/index.js b/index.js index 380df6a..c3bf5e8 100644 --- a/index.js +++ b/index.js @@ -1262,6 +1262,10 @@ io.on("connection", function(socket) { debug_log("Sent: Ctrl+x after DTR toggle"); }, 200); } + + port.set({ // toggle Off again else grbl on Uno gets stuck + "dtr": false + }, console.log("Set DTR")); }, config.grblWaitTime * 2000); diff --git a/package.json b/package.json index 72ac16a..1aa7e0a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "OpenBuildsCONTROL", - "version": "1.0.377", + "version": "1.0.378", "license": "AGPL-3.0", "description": "OpenBuildsCONTROL CNC Machine Host Software", "author": "github.com/openbuilds ",