From 291752abcdb6fca80ec92a9d9bdbf183323fcb04 Mon Sep 17 00:00:00 2001 From: Jonas Haugesen Date: Fri, 11 Sep 2026 21:21:28 +0200 Subject: [PATCH] Bump version to 1.40.2-typing.7 The clock widget's agenda part is immediate and reliable now: its query is no longer held back by the repository's 500 ms debounce, collectors no longer receive an empty list before the provider has run, and the parts are not rebuilt (losing their cached data) every time the launcher leaves the background. --- app/app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/app/build.gradle.kts b/app/app/build.gradle.kts index b15c2e395..fb488cc0d 100644 --- a/app/app/build.gradle.kts +++ b/app/app/build.gradle.kts @@ -34,8 +34,8 @@ android { applicationId = "de.mm20.launcher2" minSdk = libs.versions.minSdk.get().toInt() targetSdk = libs.versions.targetSdk.get().toInt() - versionCode = System.getenv("VERSION_CODE_OVERRIDE")?.toIntOrNull() ?: 2026091005 - versionName = "1.40.2-typing.6" + versionCode = System.getenv("VERSION_CODE_OVERRIDE")?.toIntOrNull() ?: 2026091006 + versionName = "1.40.2-typing.7" signingConfig = signingConfigs.getByName("debug") }