Merge pull request #2534 from KristjanESPERANTO/develop

This commit is contained in:
Michael Teeuw 2021-04-12 19:08:36 +02:00 committed by GitHub
commit 58094531c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -26,6 +26,7 @@ _This release is scheduled to be released on 2021-04-01._
- Fix calendar start function logging inconsistency. - Fix calendar start function logging inconsistency.
- Fix updatenotification start function logging inconsistency. - Fix updatenotification start function logging inconsistency.
- Checks and applies the showDescription setting for the newsfeed module again - Checks and applies the showDescription setting for the newsfeed module again
- Fix decimalSymbol in the forcast part of the new weather module #2530
## [2.15.0] - 2021-04-01 ## [2.15.0] - 2021-04-01

View File

@ -14,10 +14,10 @@
{% endif %} {% endif %}
<td class="bright weather-icon"><span class="wi weathericon wi-{{ f.weatherType }}"></span></td> <td class="bright weather-icon"><span class="wi weathericon wi-{{ f.weatherType }}"></span></td>
<td class="align-right bright max-temp"> <td class="align-right bright max-temp">
{{ f.maxTemperature | roundValue | unit("temperature") }} {{ f.maxTemperature | roundValue | unit("temperature") | decimalSymbol }}
</td> </td>
<td class="align-right min-temp"> <td class="align-right min-temp">
{{ f.minTemperature | roundValue | unit("temperature") }} {{ f.minTemperature | roundValue | unit("temperature") | decimalSymbol }}
</td> </td>
{% if config.showPrecipitationAmount %} {% if config.showPrecipitationAmount %}
<td class="align-right bright precipitation"> <td class="align-right bright precipitation">