Skip to content

Commit 1e91a07

Browse files
committed
Fix missing space handler in [ESP401] value thanks @TheRedstoneGuy for pointing this out
Bump version
1 parent 99e14eb commit 1e91a07

File tree

9 files changed

+2
-2
lines changed

9 files changed

+2
-2
lines changed

dist/CNC/GRBL/index.html.gz

16 Bytes
Binary file not shown.

dist/CNC/GRBLHal/index.html.gz

15 Bytes
Binary file not shown.
14 Bytes
Binary file not shown.
14 Bytes
Binary file not shown.
14 Bytes
Binary file not shown.
13 Bytes
Binary file not shown.

dist/SandTable/GRBL/index.html.gz

14 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-a16"
20+
export const webUIversion = "3.0.0-a17"
2121
export const Esp3dVersion = () => (
2222
<span>
2323
{webUIversion}.{webUIbuild}

src/tabs/features/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const FeaturesTab = () => {
142142
" T=" +
143143
entry.cast +
144144
" V=" +
145-
entry.value +
145+
entry.value.replaceAll(" ", "\\ ") +
146146
" json=yes"
147147
createNewRequest(
148148
espHttpURL("command", { cmd }),

0 commit comments

Comments
 (0)