mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 08:19:52 +03:00
changelog, typo
This commit is contained in:
@@ -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:**
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user