Skip to content

Commit

Permalink
Release 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Super12138 committed Jun 25, 2024
1 parent 87e52e4 commit 1f27955
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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() }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}

Expand Down

0 comments on commit 1f27955

Please sign in to comment.