From 0f27ee5b6f36d2d79a31c5e409239d35bc3782fd Mon Sep 17 00:00:00 2001 From: Super12138 <70494801+Super12138@users.noreply.github.com> Date: Mon, 9 Feb 2026 17:21:25 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E8=BE=B9=E8=B7=9D=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle.kts | 2 +- .../cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt | 1 + .../cn/super12138/todo/ui/pages/settings/SettingsAbout.kt | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 5d60bfe..64cea5a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -38,7 +38,7 @@ android { applicationId = "cn.super12138.todo" minSdk = 24 targetSdk = 36 - versionCode = 995 + versionCode = 996 versionName = "2.3.3" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" diff --git a/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt b/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt index fe18201..f5040df 100644 --- a/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt +++ b/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt @@ -246,6 +246,7 @@ fun SharedTransitionScope.TodoEditorPage( text = stringResource(R.string.label_more), style = MaterialTheme.typography.titleMedium ) + Spacer(modifier = Modifier.size(4.dp)) TodoDueDateChooser( value = uiState.dueDateState, onValueChange = { uiState.dueDateState = it }, diff --git a/app/src/main/kotlin/cn/super12138/todo/ui/pages/settings/SettingsAbout.kt b/app/src/main/kotlin/cn/super12138/todo/ui/pages/settings/SettingsAbout.kt index 7b63d23..a17c29a 100644 --- a/app/src/main/kotlin/cn/super12138/todo/ui/pages/settings/SettingsAbout.kt +++ b/app/src/main/kotlin/cn/super12138/todo/ui/pages/settings/SettingsAbout.kt @@ -65,9 +65,9 @@ fun SettingsAbout( clickCount++ if (clickCount == 5) { if ((System.currentTimeMillis() % 2) == 0.toLong()) { - Toast.makeText(context, "🍨", Toast.LENGTH_SHORT).show() + Toast.makeText(context, "\uD83E\uDDE7", Toast.LENGTH_SHORT).show() } else { - Toast.makeText(context, "✈️", Toast.LENGTH_SHORT).show() + Toast.makeText(context, "⛄", Toast.LENGTH_SHORT).show() } clickCount = 0 }