pull/339/head v1.0.378
unknown 2024-06-25 22:26:03 +02:00
rodzic 538d6373fa
commit 788bd7c1db
3 zmienionych plików z 8 dodań i 3 usunięć

Wyświetl plik

@ -1,11 +1,12 @@
v1.0.378:
- Test fix for 4X hanging on DTR connect
v1.0.377: v1.0.377:
- Fixed Grbl Settings Description for $14, $486 - Fixed Grbl Settings Description for $14, $486
- Fixed USB descriptor for Pico - Fixed USB descriptor for Pico
- Removed remaining Smoothieware leftovers - Removed remaining Smoothieware leftovers
- Fixed issue #360: Clear queue on port.disconnect - 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 - Fixed issue #330: Re-Enabled DTR toggle for native USB support
v1.0.376: v1.0.376:
- Updated installer End User License Agreement - Updated installer End User License Agreement
v1.0.375: v1.0.375:

Wyświetl plik

@ -1262,6 +1262,10 @@ io.on("connection", function(socket) {
debug_log("Sent: Ctrl+x after DTR toggle"); debug_log("Sent: Ctrl+x after DTR toggle");
}, 200); }, 200);
} }
port.set({ // toggle Off again else grbl on Uno gets stuck
"dtr": false
}, console.log("Set DTR"));
}, config.grblWaitTime * 2000); }, config.grblWaitTime * 2000);

Wyświetl plik

@ -1,6 +1,6 @@
{ {
"name": "OpenBuildsCONTROL", "name": "OpenBuildsCONTROL",
"version": "1.0.377", "version": "1.0.378",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"description": "OpenBuildsCONTROL CNC Machine Host Software", "description": "OpenBuildsCONTROL CNC Machine Host Software",
"author": "github.com/openbuilds <support@openbuilds.com>", "author": "github.com/openbuilds <support@openbuilds.com>",