diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 0bba430..991b1a8 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,4 @@ +v1.0.330: Fixed bug in Mobile Jog wizard, updated Pi install script v1.0.329: Testing version for random start bug v1.0.327/8: Updated GHA compile environment dependencies v1.0.326: Reverted to classic Grbl Settings layout, added more Grbl settings parameters, fixed bug in Firmware upload tool, diff --git a/app/js/websocket.js b/app/js/websocket.js index 3a56615..331f750 100644 --- a/app/js/websocket.js +++ b/app/js/websocket.js @@ -513,8 +513,10 @@ function initSocket() { // if (!_.isEqual(status, laststatus)) { if (laststatus !== undefined) { - if (!_.isEqual(status.machine.position.offset, laststatus.machine.position.offset) || machineCoordinateSpace == false) { - drawMachineCoordinates(status); + if (!isJogWidget) { + if (!_.isEqual(status.machine.position.offset, laststatus.machine.position.offset) || machineCoordinateSpace == false) { + drawMachineCoordinates(status); + } } if (!_.isEqual(status.comms.interfaces.ports, laststatus.comms.interfaces.ports)) { diff --git a/build/installerSidebarBackup.bmp b/build/installerSidebarBackup.bmp new file mode 100644 index 0000000..83f6e8a Binary files /dev/null and b/build/installerSidebarBackup.bmp differ diff --git a/esptool.py b/esptool.py index dbdec5d..50077e3 100644 --- a/esptool.py +++ b/esptool.py @@ -753,7 +753,7 @@ class ESPLoader(object): # stub takes the new baud rate and the old one second_arg = self._port.baudrate if self.IS_STUB else 0 self.command(self.ESP_CHANGE_BAUDRATE, struct.pack('", diff --git a/pi-install.sh b/pi-install.sh index e87290f..76dd108 100644 --- a/pi-install.sh +++ b/pi-install.sh @@ -12,7 +12,7 @@ sudo apt install -y xrdp echo "(4/10) Installing GIT..." sudo apt-get install -y git echo "(5/10) Installing NodeJS 12.x..." -curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - +curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - sudo apt-get install -y nodejs echo "(6/10) Updating npm..." sudo npm install -g npm@latest