pull/110/head v1.0.142
openbuilds-engineer 2019-01-30 15:13:33 +02:00
rodzic 5ab161aaae
commit 35b45b529e
3 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -1,3 +1,4 @@
v1.0.142: Fix Bug related to status parser
v1.0.141: Fix Bug that prevented Jog, fixed bug that disabled homing for Smoothie
v1.0.140: Fix Jog/Checksize to still move in mm after G20
v1.0.138: Changed size of MiniMill overlay, made 3D viewer the default tab

Wyświetl plik

@ -116,7 +116,7 @@ function setControlBar(val, status) {
$('#stopBtn').hide().attr('disabled', true);
$('#toolBtn').hide().attr('disabled', true);
$('#toolBtn2').hide().attr('disabled', true);
if (laststatus.machine.firmware.type == 'grbl') {
if (laststatus != undefined && laststatus.machine.firmware.type == 'grbl') {
if (grblParams['$22'] == 1) {
$('#homeBtn').hide().attr('disabled', true);
} else {

Wyświetl plik

@ -1,6 +1,6 @@
{
"name": "OpenBuildsCONTROL",
"version": "1.0.141",
"version": "1.0.142",
"license": "AGPL-3.0",
"description": "Machine Interface Driver for OpenBuilds",
"author": "github.com/openbuilds <webmaster@openbuilds.com>",