Weather forecast
You can now display the forecast for the next three days.
Note: this does require an additional API call to OpenWeatherMap. Once on startup and then every 3 hours thereafter.
Example:
weather:
- name: London
lat: xxx
lon: xxx
api: xxx
unit: metric
lang: en
forecast: true # <- Add to display forecast
Stricter config validation
Config validation is now set to error by default if your config is invalid (it warned before).
This behaviour can be changed via config_validation_level
.
example:
kiosk:
config_validation_level: warning # can be error or warning
Go 1.25
Upgraded to Go 1.25. This version improves how Go respects container resource limits (e.g., CPU and memory constraints), resulting in more predictable behaviour when running inside containers.
What's Changed
🚀 New Features
- added config validation error by @damongolding in #509
- Feature/weather forecast by @damongolding in #511
🔨 Maintenance
- deps by @damongolding in #505
- add AIR support by @damongolding in #499
- Chore/go bump by @damongolding in #507
Full Changelog: v0.22.2...v0.23.0