Skip to content

Commit

Permalink
Merge pull request #212 from TimerTiTi/release-1.4.8
Browse files Browse the repository at this point in the history
Release 1.4.8
  • Loading branch information
koreatlwls authored Nov 27, 2024
2 parents 503a1d4 + 4220839 commit 947f0f9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build-logic/src/main/kotlin/com/titi/common/BuildInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ object BuildType {

object AppConfig {
const val APP_ID = "com.titi.app"
const val APP_VERSION_NAME = "1.4.7"
const val APP_VERSION_CODE = 48
const val APP_VERSION_NAME = "1.4.8"
const val APP_VERSION_CODE = 50
const val APP_NAME = "TiTi"
}
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private fun TdsTimeLineBar(modifier: Modifier = Modifier, time: Long, hour: Stri
val radius = size.width * 0.5f
val barWidth = size.width * 0.9f
val barMaxHeight = size.height - spacing - textLayoutResult.size.height
val barHeight = barMaxHeight * (time / 3600).coerceAtMost(1L)
val barHeight = barMaxHeight * (time / 3600f).coerceAtMost(1f)
val barSpacing = size.width * 0.05f
val startY = size.height - barHeight - spacing - textLayoutResult.size.height
val cornerRadius = CornerRadius(radius, radius)
Expand Down
4 changes: 2 additions & 2 deletions release-note.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
TiTi android 1.4.7
- Swipe Dismiss 상태 수정
TiTi android 1.4.8
- 타임라인 바 높이 수정

0 comments on commit 947f0f9

Please sign in to comment.