pull/212/head
openbuilds-engineer 2021-02-26 16:28:44 +02:00
rodzic 006bd77c2b
commit 2e9139c945
4 zmienionych plików z 9 dodań i 2 usunięć

Wyświetl plik

@ -1,3 +1,4 @@
v1.0.285: MacOS ESPtool Support (Beta)
v1.0.284: Fixed bug related to Door that was affecting Probing
v1.0.283: Fixed realtime feedrate indicator, improved Door handling
v1.0.282: Improved logging messages for Interface Firmware flashing tool, Fixed bug with non-standard Grbl Firmwares that have Variable Speed disabled

BIN
esptool-mac 100644

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -2852,7 +2852,13 @@ function flashInterface(data) {
'0x8000', path.join(__dirname, "./firmware.partitions.bin")
];
var child = spawn(path.join(__dirname, "./esptool.exe"), esptool_opts);
if (process.platform == 'darwin') {
var child = spawn(path.join(__dirname, "./esptool-mac"), esptool_opts);
} else if (process.platform == 'win32') {
var child = spawn(path.join(__dirname, "./esptool.exe"), esptool_opts);
}
child.stdout.on('data', function(data) {

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "OpenBuildsCONTROL",
"version": "1.0.284",
"version": "1.0.285",
"license": "AGPL-3.0",
"description": "OpenBuildsCONTROL CNC Machine Interface Software",
"author": "github.com/openbuilds <webmaster@openbuilds.com>",