Release v26.04.29.2 — Drop broken WeatherCard from journal #32
Reference in New Issue
Block a user
Delete Branch "dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hotfix-style follow-up to v26.04.29.1 — single-commit, surface-only.
Why
The journal screen pinned a
WeatherCardto the top of the chat, but the card expected a flat shape (current_temp,condition,today_high, ...) while the prep payload sends raw OpenMeteo data nested underforecast_jsonper location. Every field read as null, so the rendered card showednull°andnull/nullcovering the prep prose.What
a77b71e— Drop the WeatherCard render from the journal screen, delete the unused widget file. The prep prose itself already mentions weather plainly ("Weather at home will reach a high of 15.9° with a 0% chance of precipitation") — the visual card was redundant on top of that. Removing it eliminates the "null" bug without losing any actual info; the underlying weather data is still inmetadata.sections.weatherif a future reader wants a different rendering.Test plan
flutter analyzeclean🤖 Generated with Claude Code