diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 2e5e14e..2b315e2 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,5 @@ +v1.0.387 +- Improved Feature request #375 handling of localstorage v1.0.386 - Implemented Click-on Handlers for A-Axis DRO Entry (Bug #374) - Added direction (Along X or Y) support to Surfacing Wizard (Feature request #375) diff --git a/app/wizards/surfacing/surfacing.js b/app/wizards/surfacing/surfacing.js index c3383c6..2f1d002 100644 --- a/app/wizards/surfacing/surfacing.js +++ b/app/wizards/surfacing/surfacing.js @@ -181,7 +181,10 @@ function populateSurfaceToolForm() { var $radios = $("input:radio[name=surfaceType]"); $radios.filter("[value=" + data.surfaceType + "]").prop("checked", true); //Metro.dialog.open("#surfacingDialog"); + + // if (data.surfaceDirection != undefined) { $('#surfaceDirection').val(data.surfaceDirection); // Restore surface direction + // } } diff --git a/package.json b/package.json index f60ed74..6c035e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "OpenBuildsCONTROL", - "version": "1.0.386", + "version": "1.0.387", "license": "AGPL-3.0", "description": "OpenBuildsCONTROL CNC Machine Host Software", "author": "github.com/openbuilds ",