Skip to content

Commit

Permalink
Merge pull request #197 from TimerTiTi/release-1.4.3
Browse files Browse the repository at this point in the history
Release 1.4.3
  • Loading branch information
koreatlwls authored Sep 29, 2024
2 parents cb894de + a52461c commit d12e0cf
Show file tree
Hide file tree
Showing 48 changed files with 1,096 additions and 647 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.2"
const val APP_VERSION_CODE = 42
const val APP_VERSION_NAME = "1.4.3"
const val APP_VERSION_CODE = 43
const val APP_NAME = "TiTi"
}
1 change: 1 addition & 0 deletions core/designsystem/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ android {

dependencies {
implementation(project(":core:util"))
implementation(project(":tds"))

implementation(libs.threetenabp)
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import androidx.compose.foundation.layout.heightIn
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.widthIn
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material.ripple.rememberRipple
import androidx.compose.material3.Button
import androidx.compose.material3.ButtonDefaults
import androidx.compose.material3.ripple
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import androidx.compose.ui.Alignment
Expand Down Expand Up @@ -113,7 +113,7 @@ fun TdsIconButton(
enabled = enabled,
role = Role.Button,
interactionSource = interactionSource,
indication = rememberRipple(
indication = ripple(
bounded = false,
radius = size / 2,
),
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fun TdsGraphContent(
modifier = Modifier.wrapContentSize(),
userScrollEnabled = true,
state = pagerState,
beyondBoundsPageCount = 3,
beyondViewportPageCount = 3,
) { page ->
when (page % 4) {
0 -> TdsStandardDailyGraph(
Expand Down

This file was deleted.

Loading

0 comments on commit d12e0cf

Please sign in to comment.