Skip to content

Commit f5997ca

Browse files
committed
Add Serial Bridge translation
Fix bug with restart always requested when saving Features Bump version
1 parent 5c42fec commit f5997ca

File tree

10 files changed

+9
-4
lines changed

10 files changed

+9
-4
lines changed

dist/CNC/GRBL/index.html.gz

10 Bytes
Binary file not shown.

dist/CNC/GRBLHal/index.html.gz

14 Bytes
Binary file not shown.
13 Bytes
Binary file not shown.
10 Bytes
Binary file not shown.
12 Bytes
Binary file not shown.
13 Bytes
Binary file not shown.

dist/SandTable/GRBL/index.html.gz

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

src/tabs/features/index.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,12 @@ const FeaturesTab = () => {
215215
const subsection = section[subsectionId]
216216
Object.keys(subsection).map((entryId) => {
217217
const entry = subsection[entryId]
218-
if (entry.initial != entry.value) total++
219-
if (entry.needRestart == "1") needrestart = true
218+
if (entry.initial != entry.value) {
219+
total++
220+
if (entry.needRestart == "1") {
221+
needrestart = true
222+
}
223+
}
220224
})
221225
})
222226
})

src/targets/translations/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,5 +338,6 @@
338338
"light": "Light",
339339
"grbl": "Grbl",
340340
"SD updater": "SD updater",
341-
"setup": "Setup mode"
341+
"setup": "Setup mode",
342+
"serial_bridge":"Serial Bridge"
342343
}

0 commit comments

Comments
 (0)