Skip to content

Commit

Permalink
v1.0.388
Browse files Browse the repository at this point in the history
  • Loading branch information
petervanderwalt committed Dec 13, 2024
1 parent 0ae7461 commit ebcc897
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v1.0.387
v1.0.387/388
- Improved Feature request #375 handling of localstorage
v1.0.386
- Implemented Click-on Handlers for A-Axis DRO Entry (Bug #374)
Expand Down
9 changes: 5 additions & 4 deletions app/wizards/surfacing/surfacing.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ function populateSurfaceToolForm() {
surfaceFinalDepth: 3,
surfaceCoolant: "enabled",
surfaceFraming: "enabled",
surfaceRPM: 1000
surfaceRPM: 1000,
surfaceDirection: "X"
};
}
$("#surfaceDiameter").val(data.surfaceDiameter);
Expand All @@ -182,9 +183,9 @@ function populateSurfaceToolForm() {
$radios.filter("[value=" + data.surfaceType + "]").prop("checked", true);
//Metro.dialog.open("#surfacingDialog");

// if (data.surfaceDirection != undefined) {
$('#surfaceDirection').val(data.surfaceDirection); // Restore surface direction
// }
if (data.surfaceDirection != undefined) {
$('#surfaceDirection').val(data.surfaceDirection); // Restore surface direction
}

}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "OpenBuildsCONTROL",
"version": "1.0.387",
"version": "1.0.388",
"license": "AGPL-3.0",
"description": "OpenBuildsCONTROL CNC Machine Host Software",
"author": "github.com/openbuilds <[email protected]>",
Expand Down

0 comments on commit ebcc897

Please sign in to comment.