From 0ae74619b1ae09d0df3ce560aea072394cee94fc Mon Sep 17 00:00:00 2001
From: unknown
Date: Fri, 13 Dec 2024 16:01:45 +0200
Subject: [PATCH] v1.0.387
---
CHANGELOG.txt | 2 ++
app/wizards/surfacing/surfacing.js | 3 +++
package.json | 2 +-
3 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 2e5e14ed..2b315e28 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 c3383c69..2f1d0023 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 f60ed742..6c035e5b 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 ",