From 968493e69cfaedab7d3fb23550104e539f855402 Mon Sep 17 00:00:00 2001
From: openbuilds-engineer
Date: Wed, 31 Jul 2019 21:13:04 +0200
Subject: [PATCH] v1.0.183
---
CHANGELOG.txt | 1 +
index.js | 1 +
2 files changed, 2 insertions(+)
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 1fc496c..c5031be 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,4 @@
+v1.0.183: Removed LEAD55 and fixed capatilization of LEAD1010, testing Probing with forced G21 before probe
v1.0.182: Updated SSL Certificates, Hide Pen Buttons until an instance of Grbl-Servo is detected
v1.0.181: Fixed bug #88 re Incremental/Continous jog focus, Revamped Grbl Predefined Profiles to use submenus and added Pen options, Integrated Servo Pen Up/Down.
v1.0.180: Fixed bug #87: Don't show Update dialog while running job, Updated connection messages when Smoothieware is detected to alert user to replace it with Grbl-LPC, Increased spacing between buttons in Mobile interface (bug #90), Added Framing pass to Surfacing Wizard (Bug #83), updated 2x Dependencies
diff --git a/index.js b/index.js
index cefd6dd..a7ffafa 100644
--- a/index.js
+++ b/index.js
@@ -1068,6 +1068,7 @@ io.on("connection", function(socket) {
status.machine.probe.plate = data.plate;
switch (status.machine.firmware.type) {
case 'grbl':
+ addQToEnd('G21');
addQToEnd('G10 P1 L20 Z0');
addQToEnd('G38.2 Z-' + data.dist + ' F' + data.feedrate);
send1Q();