Skip to content

Commit

Permalink
Fix #363
Browse files Browse the repository at this point in the history
  • Loading branch information
petervanderwalt committed Sep 30, 2024
1 parent f108631 commit 299d5da
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ v1.0.381:
- Default all machine profiles to have Limits enabled by default - been a couple years since we've started including limit switches as standard
- Added quick search to Grbl Settings table (Note new search overwrites any changes, make sure to save before changing search)
- Fixed bug #368 Calibration Wizard repeated runs but without entering distance causes desync
- Added feature to Probing Wizard, touch off probe doubles as clicking Confirm (PR #339 Thanks @tippfehlr)
- Improved port refresh (PR #367 Thanks Windfisch)
- Fixed Select machine Dropdown for Servo/Pen ACROs (Issue #363)
v1.0.380:
- Test Fix for grblHAL startup alarm lock
v1.0.379:
Expand Down
15 changes: 15 additions & 0 deletions app/js/grbl-settings-defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -1093,6 +1093,21 @@ function setMachineButton(type) {
} else if (type == "leadmachine1515") {
template = `<img src="img/mch/` + type + `.png"/> OpenBuilds LEAD 1515`
overlaytype = type;
} else if (type == "acro55pen") {
template = `<img src="img/mch/acro55.png"/> OpenBuilds Acro 55 with Servo Pen Attachment`;
overlaytype = type;
} else if (type == "acro510pen") {
template = `<img src="img/mch/acro510.png"/> OpenBuilds Acro 510 with Servo Pen Attachment`;
overlaytype = type;
} else if (type == "acro1010pen") {
template = `<img src="img/mch/acro1010.png"/> OpenBuilds Acro 1010 with Servo Pen Attachment`;
overlaytype = type;
} else if (type == "acro1510pen") {
template = `<img src="img/mch/acro1510.png"/> OpenBuilds Acro 1510 with Servo Pen Attachment`;
overlaytype = type;
} else if (type == "acro1515pen") {
template = `<img src="img/mch/acro1515.png"/> OpenBuilds Acro 1515 with Servo Pen Attachment`;
overlaytype = type
} else if (type == "custom") {
template = `<img src="img/mch/` + type + `.png"/> Custom Machine`
overlaytype = type;
Expand Down

0 comments on commit 299d5da

Please sign in to comment.