changelog, typo

This commit is contained in:
MichaelDvP
2022-02-16 19:37:23 +01:00
parent 9046a6578a
commit 18651bdaf4
2 changed files with 9 additions and 2 deletions

View File

@@ -22,6 +22,10 @@
- Help text for string commands in WebUI [#320](https://github.com/emsesp/EMS-ESP32/issues/320) - Help text for string commands in WebUI [#320](https://github.com/emsesp/EMS-ESP32/issues/320)
- Germany translations (at compile time) - Germany translations (at compile time)
- #entities added to system/info` endpoint [#322](https://github.com/emsesp/EMS-ESP32/issues/322) - #entities added to system/info` endpoint [#322](https://github.com/emsesp/EMS-ESP32/issues/322)
- analog outputs digital/pwm/dac
- remove MQTT retained configs if discovery is disabled
- timeout 10 min for MQTT-QoS wait
- Moduline 300 auto-temperatures T1-T4, RC300 romminfluencefactor
### Fixed ### Fixed
@@ -38,6 +42,7 @@
- Fix uploading firmware on OSX [#345](https://github.com/emsesp/EMS-ESP32/issues/345) - Fix uploading firmware on OSX [#345](https://github.com/emsesp/EMS-ESP32/issues/345)
- Non-nested MQTT would corrupt the json [#354](https://github.com/emsesp/EMS-ESP32/issues/354) - Non-nested MQTT would corrupt the json [#354](https://github.com/emsesp/EMS-ESP32/issues/354)
- Burner selected max power can have a value higher than 100% [#314](https://github.com/emsesp/EMS-ESP32/issues/314) - Burner selected max power can have a value higher than 100% [#314](https://github.com/emsesp/EMS-ESP32/issues/314)
- some missing fahrenheit calculations
### Changed ### Changed
@@ -51,6 +56,8 @@
- Show ems tx reads and writes separatly - Show ems tx reads and writes separatly
- Show ems device handlers separated for received, fetched and pending handlers. - Show ems device handlers separated for received, fetched and pending handlers.
- Wired renamed to Ethernet - Wired renamed to Ethernet
- removed system/pin command, new commands in analogsensors
- system/info device-info split to name/version/brand
## **BREAKING CHANGES:** ## **BREAKING CHANGES:**

View File

@@ -614,7 +614,7 @@ const DashboardData: FC = () => {
{analog_data.i} {analog_data.i}
</StyledTableCell> </StyledTableCell>
<StyledTableCell>{analog_data.n}</StyledTableCell> <StyledTableCell>{analog_data.n}</StyledTableCell>
<StyledTableCell>{AnalogTypes[analog_data.t]}</StyledTableCell> <StyledTableCell>{AnalogTypeNames[analog_data.t]}</StyledTableCell>
<StyledTableCell align="right">{formatValue(analog_data.v, analog_data.u)}</StyledTableCell> <StyledTableCell align="right">{formatValue(analog_data.v, analog_data.u)}</StyledTableCell>
</StyledTableRow> </StyledTableRow>
))} ))}
@@ -709,7 +709,7 @@ const DashboardData: FC = () => {
</Grid> </Grid>
<Grid item> <Grid item>
<ValidatedTextField name="t" label="Type" value={analog.t} select onChange={updateValue(setAnalog)}> <ValidatedTextField name="t" label="Type" value={analog.t} select onChange={updateValue(setAnalog)}>
{AnalogTypes.map((val, i) => ( {AnalogTypeNames.map((val, i) => (
<MenuItem key={i} value={i}> <MenuItem key={i} value={i}>
{val} {val}
</MenuItem> </MenuItem>