pull/212/head v1.0.284
openbuilds-engineer 2021-02-11 23:11:43 +02:00
rodzic 9ce2a7bef6
commit 006bd77c2b
4 zmienionych plików z 4 dodań i 5 usunięć

Wyświetl plik

@ -1,4 +1,5 @@
v1.0.283: Fixed realtime feedrate indicator
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
v1.0.281: Added "Restore Backup" button for Grbl Settings, Fixed jog increment for mm after switching between in/mm
v1.0.280: Socket.IO Bug fixed

Wyświetl plik

@ -247,6 +247,7 @@ function initSocket() {
}
if (data.jobCompletedMsg && data.jobCompletedMsg.length > 0) {
if (data.jobStartTime) {
var runTime = data.jobEndTime - data.jobStartTime;
$("#completeMsgDiv").html("Job completed in " + msToTime(runTime) + "<hr>" + data.jobCompletedMsg);
} else {
$("#completeMsgDiv").html(data.jobCompletedMsg);

Wyświetl plik

@ -2122,9 +2122,6 @@ function parseFeedback(data) {
if (pins.includes('D')) {
// pause
pause();
} else {
unpause();
}
if (pins.includes('R')) {

Wyświetl plik

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