Skip to content

Commit

Permalink
2023.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dckiller51 committed Nov 26, 2023
1 parent abb2ee4 commit 88aac7e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

<!--next-version-placeholder-->

## 2023.11.2

- corrects the calculation problem when the main weight sensor is in pound "lb".
- add: "weight" device class for weight sensor, muscle mass sensor and bone mass sensor (thank you @5high, @impankratov)
- add: "KILOGRAMS" native unit of measurement for weight sensor, muscle mass sensor and bone mass sensor.
You can change the measurement units directly in the sensor. The conversion is automatic. There will be no impact on the results.
- add: "kcal" native unit of measurement for basal metabolism sensor.
- add: "PERCENTAGE" native unit of measurement for body fat sensor, protein sensor and water sensor.
- add display precision at "0" to display integer values for the following sensors:
- basal metabolism
- visceral fat
- metabolic age
- body score

## 2023.11.1

- added Traditional Chinese language support (thank you @yauyauwind)
Expand Down
4 changes: 2 additions & 2 deletions custom_components/bodymiscale/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
MIN_REQUIRED_HA_VERSION = "2023.9.0"
NAME = "BodyMiScale"
DOMAIN = "bodymiscale"
VERSION = "2023.11.1"
VERSION = "2023.11.2"

ISSUE_URL = "https://github.com/dckiller51/bodymiscale/issues"

Expand Down Expand Up @@ -35,7 +35,7 @@
ATTR_VISCERAL = "visceral_fat"
ATTR_WATER = "water"

UNIT_POUNDS = "lbs"
UNIT_POUNDS = "lb"

PROBLEM_NONE = "none"

Expand Down
2 changes: 1 addition & 1 deletion custom_components/bodymiscale/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"requirements": [
"cachetools==5.3.0"
],
"version": "2023.11.1"
"version": "2023.11.2"
}

0 comments on commit 88aac7e

Please sign in to comment.