Skip to content

Commit ebcc897

Browse files
v1.0.388
1 parent 0ae7461 commit ebcc897

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v1.0.387
1+
v1.0.387/388
22
- Improved Feature request #375 handling of localstorage
33
v1.0.386
44
- Implemented Click-on Handlers for A-Axis DRO Entry (Bug #374)

app/wizards/surfacing/surfacing.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,8 @@ function populateSurfaceToolForm() {
155155
surfaceFinalDepth: 3,
156156
surfaceCoolant: "enabled",
157157
surfaceFraming: "enabled",
158-
surfaceRPM: 1000
158+
surfaceRPM: 1000,
159+
surfaceDirection: "X"
159160
};
160161
}
161162
$("#surfaceDiameter").val(data.surfaceDiameter);
@@ -182,9 +183,9 @@ function populateSurfaceToolForm() {
182183
$radios.filter("[value=" + data.surfaceType + "]").prop("checked", true);
183184
//Metro.dialog.open("#surfacingDialog");
184185

185-
// if (data.surfaceDirection != undefined) {
186-
$('#surfaceDirection').val(data.surfaceDirection); // Restore surface direction
187-
// }
186+
if (data.surfaceDirection != undefined) {
187+
$('#surfaceDirection').val(data.surfaceDirection); // Restore surface direction
188+
}
188189

189190
}
190191

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "OpenBuildsCONTROL",
3-
"version": "1.0.387",
3+
"version": "1.0.388",
44
"license": "AGPL-3.0",
55
"description": "OpenBuildsCONTROL CNC Machine Host Software",
66
"author": "github.com/openbuilds <[email protected]>",

0 commit comments

Comments
 (0)