Compare commits

...

3 Commits

Author SHA1 Message Date
e943d2e70c docs: update changelog and header for version v2.0.7
All checks were successful
Release Workflow / detect-provider (push) Successful in 6s
Release Workflow / github-release (push) Has been skipped
Release Workflow / gitea-release (push) Successful in 3m44s
2025-09-13 10:08:29 +02:00
d7b0884d36 docs: update platformio.ini for version v2.0.7 2025-09-13 10:08:29 +02:00
10caf06021 fix: add HTTP service to mDNS responder 2025-09-13 10:06:52 +02:00
3 changed files with 18 additions and 1 deletions

View File

@@ -1,5 +1,21 @@
# Changelog
## [2.0.7] - 2025-09-13
### Added
- add HTTP service to mDNS responder
- add additional information about Recycling Fabrik in README files
- add Recycling Fabrik section with logo and information
- add RF logo image
- add support information for Recycling Fabrik
### Changed
- remove unnecessary separator in Recycling Fabrik section
### Fixed
- update Recycling Fabrik logo display format in README
- prevent weight display during NFC write operations
## [2.0.6-beta1] - 2025-09-03
### Fixed
- prevent weight display during NFC write operations

View File

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

View File

@@ -36,6 +36,7 @@ void startMDNS() {
vTaskDelay(1000 / portTICK_PERIOD_MS);
}
}
MDNS.addService("http", "tcp", 80);
Serial.println("mDNS responder started");
}