Skip to content

Commit 517ebc8

Browse files
committed
Fixes #260
Change time out message to be more explicit Add some sanity checks Remove some debug message Bump version
1 parent 217a196 commit 517ebc8

File tree

24 files changed

+130
-82
lines changed

24 files changed

+130
-82
lines changed

dist/CNC/GRBL/index.html.gz

67 Bytes
Binary file not shown.

dist/CNC/GRBLHal/index.html.gz

67 Bytes
Binary file not shown.
61 Bytes
Binary file not shown.
65 Bytes
Binary file not shown.
63 Bytes
Binary file not shown.
62 Bytes
Binary file not shown.

dist/SandTable/GRBL/index.html.gz

53 Bytes
Binary file not shown.

src/components/App/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
import { h } from "preact"
1919
import { webUIbuild } from "../../targets"
20-
export const webUIversion = "3.0.0-a14"
20+
export const webUIversion = "3.0.0-a15"
2121
export const Esp3dVersion = () => (
2222
<span>
2323
{webUIversion}.{webUIbuild}

src/hooks/useSettings.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ const useSettings = () => {
213213
page: "connecting",
214214
})
215215
document.title = connectionSettings.current.Hostname
216-
console.log("Connected")
217216
}
218217
function loadTheme(themepack) {
219218
if (!themepack) {

src/targets/CNC/GRBL/CMD-source.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ const commands = {
5353
return { type: "cmd", cmd: "$$" }
5454
},
5555
formatEeprom: (result) => {
56+
if (!result || result.length == 0) return []
5657
const res = result.reduce((acc, line) => {
5758
return formatEepromLine(acc, line)
5859
}, [])

0 commit comments

Comments
 (0)