pull/212/head v1.0.268
openbuilds-engineer 2020-12-28 21:12:07 +02:00
rodzic 3bd9efbcc7
commit 5ecfe70647
4 zmienionych plików z 9 dodań i 3 usunięć

Wyświetl plik

@ -1,3 +1,4 @@
v1.0.268: Fixed cosmetic layout css issue
v1.0.267: Fixed probe complete dialog, added 1% laser focus power, restore incremental if it was set prior to probe, added 3rd decimal for Inch mode DRO / padding to 2 decimals for mm mode, added Machine Coordinates to DRO tooltip, Handle M0 Pauses (Carbide etc)
v1.0.266: Updated "error 9" dialog to also include details of earlier ALARMs for troubleshooting, Fixed CheckSize bug with Lightburn Relative Coordinates
v1.0.265: Added error handling for Grbl connection failures via Interface, Updated Logging UI, Fixed Keyboard Jog bug

Wyświetl plik

@ -24,7 +24,10 @@
}
.jogcursorbtn {
margin: 7px;
margin-left: 7px;
margin-right: 7px;
margin-bottom: 0px;
margin-top: 5px;
}
.dro {

Wyświetl plik

@ -266,6 +266,7 @@ GCodeParser = function(handlers, modecmdhandlers) {
break;
}
}
lines.length = 0;
}
},
colorG0 = 0x00cc00, //bootstrap color
@ -1223,6 +1224,7 @@ GCodeParser = function(handlers, modecmdhandlers) {
// of toolhead
gcobject.userData.bbbox2 = bbbox2;
gcobject.userData.lines = lines;
lines.length = 0; //clean up
gcobject.userData.layers = layers;
// gcobject.userData.center2 = center2;
// gcobject.userData.extraObjects = this.extraObjects;
@ -1282,4 +1284,4 @@ function convertLineGeometryToBufferGeometry(lineGeometry, color) {
geometry.computeBoundingSphere();
return geometry;
};
};

Wyświetl plik

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