Compare commits
3 Commits
6cd280389d
...
v1.4.1
Author | SHA1 | Date | |
---|---|---|---|
4559bae066 | |||
cdb2d16cf9 | |||
cd71949c82 |
50
CHANGELOG.md
50
CHANGELOG.md
@ -1,5 +1,55 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.4.1] - 2025-03-10
|
||||||
|
### Added
|
||||||
|
- added new .step, now with correct individual parts
|
||||||
|
- added changelog
|
||||||
|
- Add files via upload
|
||||||
|
- added .stp files of modifications
|
||||||
|
- added merged picture
|
||||||
|
- added pictures of components bought from AliE
|
||||||
|
- Add files via upload
|
||||||
|
- added pictures for heat insert location
|
||||||
|
- added pictures showing heat insert location
|
||||||
|
- remove unnecessary delay in MQTT setup and add delay before restart
|
||||||
|
- add new 3D print file for Filaman scale
|
||||||
|
- added Discord Server
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- update platformio.ini for version v1.4.1
|
||||||
|
- refactor length calculation to convert total length to meters before formatting
|
||||||
|
- Merge pull request #16 from spitzbirne32/main
|
||||||
|
- improved housing to show display better
|
||||||
|
- removed CAD, as they were all duplicates
|
||||||
|
- typo in AliE link
|
||||||
|
- Delete usermod/spitzbirne32/STL/README.md
|
||||||
|
- Update README.md
|
||||||
|
- moved pictures of parts into dedicated folders
|
||||||
|
- Update README.md
|
||||||
|
- Update README.md
|
||||||
|
- Update README.md
|
||||||
|
- Delete usermod/spitzbirne32/STL/ScaleTop_Heatinsert_Location_usermod_spitzbirne32_.png
|
||||||
|
- Delete usermod/spitzbirne32/STL/Housing_Heatinsert_Location_usermod_spitzbirne32_.png
|
||||||
|
- created folders
|
||||||
|
- Update README.md
|
||||||
|
- Update README.md
|
||||||
|
- Create README.md
|
||||||
|
- Update README.md
|
||||||
|
- Update README.md
|
||||||
|
- Create README.md
|
||||||
|
- Merge pull request #15 from ManuelW77/main
|
||||||
|
- Merge pull request #14 from janecker/scale-calibration-rework
|
||||||
|
- Reworks the scale calibration handling
|
||||||
|
- remove redundant scale calibration checks and enhance task management
|
||||||
|
- enhance AMS data handling and streamline spool auto-setting logic
|
||||||
|
- adjust stack size and improve scale calibration logic
|
||||||
|
- update labels and input types for better clarity and functionality
|
||||||
|
- update documentation for clarity and accuracy
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- correct typo in console log for total length
|
||||||
|
|
||||||
|
|
||||||
## [1.4.0] - 2025-03-01
|
## [1.4.0] - 2025-03-01
|
||||||
### Added
|
### Added
|
||||||
- add support for Spoolman Octoprint Plugin in README files
|
- add support for Spoolman Octoprint Plugin in README files
|
||||||
|
@ -86,10 +86,10 @@ function populateVendorDropdown(data, selectedSmId = null) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Nach der Schleife: Formatierung der Gesamtlänge
|
// Nach der Schleife: Formatierung der Gesamtlänge
|
||||||
console.log("Total Length: ", totalLength);
|
const lengthInM = totalLength / 1000; // erst in m umrechnen
|
||||||
const formattedLength = totalLength > 1000
|
const formattedLength = lengthInM > 1000
|
||||||
? (totalLength / 1000).toFixed(2) + " km"
|
? (lengthInM / 1000).toFixed(2) + " km"
|
||||||
: totalLength.toFixed(2) + " m";
|
: lengthInM.toFixed(2) + " m";
|
||||||
|
|
||||||
// Formatierung des Gesamtgewichts (von g zu kg zu t)
|
// Formatierung des Gesamtgewichts (von g zu kg zu t)
|
||||||
const weightInKg = totalWeight / 1000; // erst in kg umrechnen
|
const weightInKg = totalWeight / 1000; // erst in kg umrechnen
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.4.0"
|
version = "1.4.1"
|
||||||
to_old_version = "1.4.0"
|
to_old_version = "1.4.0"
|
||||||
|
|
||||||
##
|
##
|
||||||
|
Reference in New Issue
Block a user