diff --git a/CHANGELOG.md b/CHANGELOG.md index c54faae..b522f49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0] - 2026-01-19 + +### Added +- **Internationalization (i18n)**: Full multi-language support for English, Italian, Spanish, and Catalan +- **Internationalization (i18n)**: Per-app language selection on Android 13+ via system settings +- **Dashboard**: Sleep duration display with bedtime icon when car is asleep +- **Dashboard**: Improved status indicators with chip design and new icons + +### Changed +- **Drives**: Now shows total battery consumed instead of average per drive +- **Charge Details & Drive Details**: Responsive column layout adapts to screen width (2-4 columns) (contributed by [@MARMdeveloper](https://github.com/MARMdeveloper)) + ### Fixed - **Charge Details**: Hide charger voltage/current section and charts for DC charging sessions (contributed by [@MARMdeveloper](https://github.com/MARMdeveloper)) (fixes #65) +- **Dashboard**: Power icon now shows green when charging +- Various translation fixes ## [0.10.0] - 2026-01-17 @@ -229,7 +243,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.10.0...HEAD +[Unreleased]: https://github.com/vide/matedroid/compare/v0.11.0...HEAD +[0.11.0]: https://github.com/vide/matedroid/compare/v0.10.0...v0.11.0 [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 diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 1e10ae1..43d0a13 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -19,8 +19,8 @@ android { applicationId = "com.matedroid" minSdk = 28 targetSdk = 35 - versionCode = 19 - versionName = "0.10.0" + versionCode = 20 + versionName = "0.11.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/fastlane/metadata/android/en-US/changelogs/20.txt b/fastlane/metadata/android/en-US/changelogs/20.txt new file mode 100644 index 0000000..61f839c --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/20.txt @@ -0,0 +1,14 @@ +Now available in 4 languages: English, Italian, Spanish, and Catalan! + +Added: +- Multi-language support with full localization +- Sleep duration display with bedtime icon when car is asleep +- Improved dashboard status indicators with new chip design and icons + +Changed: +- Drives screen now shows total battery consumed instead of average per drive + +Fixed: +- Hide charger voltage/current section for DC charging sessions (no relevant data) +- Power icon now shows green color when charging +- Various translation corrections