Skip to content

Commit

Permalink
Merge pull request #191 from TimerTiTi/relese-1.4.2
Browse files Browse the repository at this point in the history
Relese 1.4.2
  • Loading branch information
koreatlwls authored Sep 18, 2024
2 parents b2ae7c4 + 422dc72 commit cb894de
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 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.1"
const val APP_VERSION_CODE = 41
const val APP_VERSION_NAME = "1.4.2"
const val APP_VERSION_CODE = 42
const val APP_NAME = "TiTi"
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ fun TdsTimeLineChart(
if (isCircleDraw) {
Canvas(modifier = Modifier.size(itemWidth)) {
drawCircle(
color = currentStartColor.copy(alpha = time / 3600f),
color = currentStartColor.copy(
alpha = (time / 3600f).coerceAtMost(1f),
),
radius = itemWidth.toPx() * 0.45f,
)
}
Expand Down
5 changes: 2 additions & 3 deletions release-note.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
TiTi android 1.4.1
- Chinese font
- Animation spec
TiTi android 1.4.2
- fix alpha over 1f

0 comments on commit cb894de

Please sign in to comment.