Merge pull request #30 from janecker/main
Fix memory leak issue in HTTPClient
This commit is contained in:
commit
367e692c74
25
CHANGELOG.md
25
CHANGELOG.md
@ -1,5 +1,30 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.4.7] - 2025-03-27
|
||||||
|
### Added
|
||||||
|
- add forced cache refresh after removing and saving Bambu credentials
|
||||||
|
- add functionality to remove Bambu credentials and update API handling
|
||||||
|
- add rfid_bambu.html and update bambu connection handling
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- update platformio.ini for version v1.4.7
|
||||||
|
- Merge branch 'testing'
|
||||||
|
- update remove button for Bambu credentials with red background
|
||||||
|
- Merge pull request #28 from tugsi/main
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- handle Bambu connection state by introducing bambuDisabled flag
|
||||||
|
- Fix rfid.js-Failure with X1-Series, if you wanna send a Spool to AMS: - Uncaught TypeError: Cannot read properties of undefined (reading 'replace') at handleSpoolIn (rfid.js:493:67) at HTMLButtonElement.onclick ((Index):1:1) handleSpoolIn @ rfid.js:493 onclick @ (Index):1
|
||||||
|
|
||||||
|
|
||||||
|
## [1.4.6] - 2025-03-26
|
||||||
|
### Changed
|
||||||
|
- update platformio.ini for version v1.4.6
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- handle potential undefined value for tray_info_idx in handleSpoolIn function, by @tugsi
|
||||||
|
|
||||||
|
|
||||||
## [1.4.5] - 2025-03-25
|
## [1.4.5] - 2025-03-25
|
||||||
### Changed
|
### Changed
|
||||||
- update platformio.ini for version v1.4.5
|
- update platformio.ini for version v1.4.5
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.4.5"
|
version = "1.4.7"
|
||||||
to_old_version = "1.4.0"
|
to_old_version = "1.4.0"
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -95,7 +95,6 @@ void sendToApi(void *parameter) {
|
|||||||
|
|
||||||
HTTPClient http;
|
HTTPClient http;
|
||||||
http.setReuse(false);
|
http.setReuse(false);
|
||||||
http.setTimeout(10000);
|
|
||||||
|
|
||||||
http.begin(spoolsUrl);
|
http.begin(spoolsUrl);
|
||||||
http.addHeader("Content-Type", "application/json");
|
http.addHeader("Content-Type", "application/json");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user