Release 1.0.5
This commit is contained in:
parent
87e52e458b
commit
1f2795530a
2 changed files with 5 additions and 2 deletions
|
|
@ -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() }
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue