Skip to content

Commit

Permalink
v1.0.364
Browse files Browse the repository at this point in the history
  • Loading branch information
petervanderwalt committed Mar 23, 2023
1 parent f56ebf1 commit a33135a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
v1.0.364: Fixed bug in Surfacing Wizard Freeze bug (Special thanks to Armaliteguy for providing debug info)
v1.0.363: Renewed SSL certificates for API integration
v1.0.362: Fixed typo in port left over from earlier test
v1.0.361: Test older version of Github Actions runner for Ubuntu installs
Expand Down
4 changes: 3 additions & 1 deletion app/wizards/surfacing/surfacing.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,10 @@ function populateSurfaceToolForm() {
} else {
$("#surfaceFinalDepth").val(data.surfaceDepth);
}
if (data.surfaceCoolant != undefined) {
$('#surfaceCoolant').val(data.surfaceCoolant)
}

$('#surfaceCoolant').val(data.surfaceCoolant)
$('#surfaceRPM').val(data.surfaceRPM)
var $radios = $("input:radio[name=surfaceType]");
$radios.filter("[value=" + data.surfaceType + "]").prop("checked", true);
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.363",
"version": "1.0.364",
"license": "AGPL-3.0",
"description": "OpenBuildsCONTROL CNC Machine Host Software",
"author": "github.com/openbuilds <support@openbuilds.com>",
Expand Down

0 comments on commit a33135a

Please sign in to comment.