Compare commits

..

3 Commits

Author SHA1 Message Date
dca9ef8d08 docs: update changelog and header for version v1.5.11-beta2
All checks were successful
Release Workflow / detect-provider (push) Successful in 3s
Release Workflow / github-release (push) Has been skipped
Release Workflow / gitea-release (push) Successful in 3m6s
2025-08-28 10:45:35 +02:00
513e02b867 docs: update platformio.ini for beta version v1.5.11-beta2 2025-08-28 10:45:35 +02:00
99babe2b4a fix: add logging for healthy spoolman instance check 2025-08-28 10:45:16 +02:00
3 changed files with 11 additions and 1 deletions

View File

@@ -1,5 +1,13 @@
# Changelog
## [1.5.11-beta2] - 2025-08-28
### Added
- add logging for healthy spoolman instance check
### Changed
- update platformio.ini for beta version v1.5.11-beta2
## [1.5.11-beta1] - 2025-08-28
### Changed
- update platformio.ini for beta version v1.5.11-beta1

View File

@@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html
[common]
version = "1.5.11-beta1"
version = "1.5.11-beta2"
to_old_version = "1.5.0"
##

View File

@@ -700,6 +700,8 @@ bool checkSpoolmanInstance() {
oledShowTopRow();
spoolmanConnected = true;
returnValue = strcmp(status, "healthy") == 0;
Serial.print("Spoolman instance is healthy: ");
Serial.println(returnValue);
}else{
spoolmanConnected = false;
}