Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
w2sv committed Oct 12, 2024
1 parent 928b30d commit 65bc71b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ import androidx.compose.ui.draw.clip
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.AnnotatedString
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import androidx.lifecycle.Lifecycle
Expand All @@ -47,7 +46,7 @@ import com.w2sv.filenavigator.ui.LocalMoveDestinationPathConverter
import com.w2sv.filenavigator.ui.designsystem.WeightedBox
import com.w2sv.filenavigator.ui.modelext.color
import com.w2sv.filenavigator.ui.modelext.exists
import eu.wewox.textflow.TextFlow
import eu.wewox.textflow.material3.TextFlow
import kotlinx.collections.immutable.ImmutableList
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.launch
Expand Down Expand Up @@ -159,10 +158,7 @@ private fun MoveRecordView(
private fun FileNameWithTypeAndSourceIcon(moveEntry: MovedFile, modifier: Modifier = Modifier) {
Box(modifier = modifier) {
TextFlow(
text = remember(moveEntry.name) {
AnnotatedString(moveEntry.name)
},
style = LocalTextStyle.current.copy(color = LocalContentColor.current),
text = moveEntry.name,
fontSize = MoveHistoryDefaults.FontSize,
) {
// Placeholder that determines the obstacle size
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ agp = "8.6.1"
kotlin = "2.0.20"
java = "17"
ksp = "2.0.20-1.0.25"
triplet-play = "3.10.1"
triplet-play = "3.11.0"
protobuf-plugin = "0.9.4"

compose-tooling = "1.7.3"
Expand All @@ -16,12 +16,12 @@ junit = "4.13.2"
lifecycle = "2.8.6"
room = "2.6.1"
compose-lint-checks = "1.3.1"
kotlinxCollectionsImmutable = "0.3.7"
kotlinxCollectionsImmutable = "0.3.8"
composed = "0.0.5-rc2"
materialKolor = "1.7.0"
compose-destinations = "2.0.0-beta01"
hiltNavigationCompose = "1.2.0"
protobuf = "4.27.3"
protobuf = "4.28.2"
androidxActivity = "1.9.2"
kotlinutils = "0.1.3-rc1"
datastoreutils = "0.0.4-rc1"
Expand Down Expand Up @@ -83,7 +83,7 @@ kotlinx-collections-immutable = { module = "org.jetbrains.kotlinx:kotlinx-collec
materialKolor = { module = "com.materialkolor:material-kolor", version.ref = "materialKolor" }
compose-destinations = { module = "io.github.raamcosta.compose-destinations:core", version.ref = "compose-destinations" }
compose-destinations-ksp = { module = "io.github.raamcosta.compose-destinations:ksp", version.ref = "compose-destinations" }
textflow = { module = "io.github.oleksandrbalan:textflow", version = "1.1.2" }
textflow = { module = "io.github.oleksandrbalan:textflow-material3", version = "1.2.1" }

# Testing
junit = { module = "junit:junit", version.ref = "junit" }
Expand Down

0 comments on commit 65bc71b

Please sign in to comment.