pull/212/head v1.0.289
openbuilds-engineer 2021-02-26 22:47:48 +02:00
rodzic 37f3ec04f2
commit 0b41a14bf2
4 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -1,3 +1,4 @@
v1.0.289: Fixed Jog Increments Keyboard Shortcuts
v1.0.286/7/8: Moved CI to GHActions
v1.0.285: MacOS ESPtool Support (Beta)
v1.0.284: Fixed bug related to Door that was affecting Probing

Wyświetl plik

@ -712,7 +712,7 @@ $(document).ready(function() {
});
function changeStepSize(dir) {
if (jogdist == 0.1 || jogdist == 0.254) {
if (jogdist == 0.1 || jogdist == 0.0254) {
if (dir == 1) {
jogdist = 1;
$('.distbtn').removeClass('bd-openbuilds')
@ -725,7 +725,7 @@ function changeStepSize(dir) {
if (dir == -1) {
// do nothing
}
} else if (jogdist == 1 || jogdist == 2.54) {
} else if (jogdist == 1 || jogdist == 0.254) {
if (dir == 1) {
jogdist = 10;
$('.distbtn').removeClass('bd-openbuilds')
@ -744,7 +744,7 @@ function changeStepSize(dir) {
$('#dist01label').removeClass('fg-gray')
$('#dist01label').addClass('fg-openbuilds')
}
} else if (jogdist == 10 || jogdist == 25.4) {
} else if (jogdist == 10 || jogdist == 2.54) {
if (dir == 1) {
jogdist = 100;
$('.distbtn').removeClass('bd-openbuilds')
@ -763,7 +763,7 @@ function changeStepSize(dir) {
$('#dist1label').removeClass('fg-gray')
$('#dist1label').addClass('fg-openbuilds')
}
} else if (jogdist == 100 || jogdist == 254) {
} else if (jogdist == 100 || jogdist == 25.4) {
if (dir == 1) {
// do nothing
}

Wyświetl plik

@ -599,7 +599,7 @@ function initSocket() {
//$("#realSpeed").html(("S=" + status.machine.overrides.realSpindle / 25.4).toFixed(0) + "in/min");
}
console.log(JSON.stringify(status.machine.overrides, null, 4));
//console.log(JSON.stringify(status.machine.overrides, null, 4));
// Windows Power Management

Wyświetl plik

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