Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
190e952ec4 | |||
89620a7f00 | |||
536950eeb3 |
@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [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
|
||||||
|
@ -490,7 +490,7 @@ function handleSpoolIn(amsId, trayId) {
|
|||||||
nozzle_temp_max: parseInt(maxTemp),
|
nozzle_temp_max: parseInt(maxTemp),
|
||||||
type: selectedSpool.filament.material,
|
type: selectedSpool.filament.material,
|
||||||
brand: selectedSpool.filament.vendor.name,
|
brand: selectedSpool.filament.vendor.name,
|
||||||
tray_info_idx: selectedSpool.filament.extra.bambu_idx.replace(/['"]+/g, '').trim(),
|
tray_info_idx: selectedSpool.filament.extra.bambu_idx?.replace(/['"]+/g, '').trim() || '',
|
||||||
cali_idx: "-1" // Default-Wert setzen
|
cali_idx: "-1" // Default-Wert setzen
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -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.6"
|
||||||
to_old_version = "1.4.0"
|
to_old_version = "1.4.0"
|
||||||
|
|
||||||
##
|
##
|
||||||
|
Reference in New Issue
Block a user