Release 1.0.5

This commit is contained in:
Super12138 2024-06-25 13:12:00 +08:00
parent 87e52e458b
commit 1f2795530a
2 changed files with 5 additions and 2 deletions

View file

@ -9,7 +9,7 @@ ksp {
arg("room.schemaLocation", "$projectDir/schemas")
}
val baseVersionName = "1.0.4"
val baseVersionName = "1.0.5"
val commitHash by lazy { "git rev-parse --short HEAD".exec() }
val verCode by lazy { "git rev-list --count HEAD".exec().toInt() }

View file

@ -103,7 +103,10 @@ class ToDoBottomSheet : BottomSheetDialogFragment() {
TextUtils.getSubjectID(todoOrigSubject)?.let { binding.todoSubject.check(it) }
if (GlobalValues.devMode) {
binding.todoUuid.text = "UUID: $todoUUID"
binding.todoUuid.apply {
text = "UUID: $todoUUID"
visibility = View.VISIBLE
}
}
}