Version 1.29.0

This commit is contained in:
MM20 2024-02-20 22:17:36 +01:00
parent 86edb510f8
commit 22b1e14c11
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389
2 changed files with 14 additions and 2 deletions

View File

@ -31,8 +31,8 @@ android {
minSdk = libs.versions.minSdk.get().toInt()
targetSdk = libs.versions.targetSdk.get().toInt()
@SuppressLint("HighAppVersionCode")
versionCode = System.getenv("VERSION_CODE_OVERRIDE")?.toIntOrNull() ?: 2023101300
versionName = "1.28.0"
versionCode = System.getenv("VERSION_CODE_OVERRIDE")?.toIntOrNull() ?: 2024022000
versionName = "1.29.0"
signingConfig = signingConfigs.getByName("debug")
}

View File

@ -0,0 +1,12 @@
- ⚠️ **Breaking**: Backups that were created with an older version cannot be fully restored on this version.
- ⚠️ **Breaking**: Weather provider settings are reset after the update
- Added support for plugins:
- For now, plugins can add more weather providers and more file search providers (more plugin types will be added in the future)
- There are two plugins available right now: OpenWeatherMap and OneDrive search
- If you are a developer, and you want to create your own plugins, read the [docs](https://kvaesitso.mm20.de/docs/developer-guide/plugins/get-started.html) to get started
- The dock is now always shown at the bottom of the screen, regardless of clock position and clock widget layout
- Moved dock settings from clock widget to home screen settings
- Fix that some third party app widgets cannot be added
- (Android 12+) Added a preference to use Material You compat colors instead of system provided colors (thanks to @strongville)
- "Edit widgets" is now shown in overflow menu if button is disabled (thanks to @strongville)
- Bugfixes