chore: release v0.10.0

- Fullscreen mode for line charts
- Weather Along the Way in Drive details
- Optimized chart rendering with LTTB downsampling
- Improved chart labels (time and value axes)
- Filter and scroll state persistence fixes

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Davide Ferrari
2026-01-17 11:17:02 +01:00
parent 025f4dae4d
commit 8c60ded4dc
3 changed files with 17 additions and 3 deletions

View File

@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.10.0] - 2026-01-17
### Changed
- **Drive Details**: Charts now use optimized rendering with data downsampling (LTTB algorithm) for smooth scrolling on long trips
- **Drive Details**: Charts now display time labels on X-axis (start, 1st quarter, half, 3rd quarter, end)
@@ -224,7 +226,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Dashboard with basic vehicle status
- Charges screen with history list
[Unreleased]: https://github.com/vide/matedroid/compare/v0.9.4...HEAD
[Unreleased]: https://github.com/vide/matedroid/compare/v0.10.0...HEAD
[0.10.0]: https://github.com/vide/matedroid/compare/v0.9.4...v0.10.0
[0.9.4]: https://github.com/vide/matedroid/compare/v0.9.3...v0.9.4
[0.9.3]: https://github.com/vide/matedroid/compare/v0.9.2...v0.9.3
[0.9.2]: https://github.com/vide/matedroid/compare/v0.9.1...v0.9.2

View File

@@ -19,8 +19,8 @@ android {
applicationId = "com.matedroid"
minSdk = 28
targetSdk = 35
versionCode = 18
versionName = "0.9.4"
versionCode = 19
versionName = "0.10.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

View File

@@ -0,0 +1,11 @@
Added:
- Fullscreen mode for line charts in Drive and Charge details
- Weather Along the Way in Drive details showing historical weather conditions
Changed:
- Charts now use optimized rendering with LTTB downsampling for smooth scrolling
- Charts display time labels on X-axis and 4 Y-axis labels at quarter intervals
Fixed:
- Date and distance filters now persist when navigating to drive details
- Scroll position preserved when returning from drive details