diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 72538aa1..96246c6f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,4 @@ +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 v1.0.360: Improved Job Recovery wizard to handle Spindle commands / Warn if no spindle commands found (Thanks to @sharmstr) v1.0.357-359: Debugged and fixed the Linux/Mac Modules bug, removed Hazardous from dependencies, Changed internal methods for launching esptool diff --git a/index.js b/index.js index 79827ca4..4d18c788 100644 --- a/index.js +++ b/index.js @@ -25,7 +25,7 @@ process.on("uncaughtException", (err) => { debug_log("Starting OpenBuilds CONTROL v" + require('./package').version) var config = {}; -config.webPort = process.env.WEB_PORT || 3200; +config.webPort = process.env.WEB_PORT || 3000; config.posDecimals = process.env.DRO_DECIMALS || 2; config.grblWaitTime = 0.5; config.firmwareWaitTime = 4; diff --git a/package.json b/package.json index fab9dc27..35811817 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "OpenBuildsCONTROL", - "version": "1.0.361", + "version": "1.0.362", "license": "AGPL-3.0", "description": "OpenBuildsCONTROL CNC Machine Host Software", "author": "github.com/openbuilds ",