Skip to content

Commit 65bc71b

Browse files
committed
Update dependencies
1 parent 928b30d commit 65bc71b

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

app/src/main/kotlin/com/w2sv/filenavigator/ui/screen/home/components/movehistory/MoveHistory.kt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import androidx.compose.ui.draw.clip
3434
import androidx.compose.ui.platform.LocalContext
3535
import androidx.compose.ui.res.painterResource
3636
import androidx.compose.ui.res.stringResource
37-
import androidx.compose.ui.text.AnnotatedString
3837
import androidx.compose.ui.unit.dp
3938
import androidx.compose.ui.unit.sp
4039
import androidx.lifecycle.Lifecycle
@@ -47,7 +46,7 @@ import com.w2sv.filenavigator.ui.LocalMoveDestinationPathConverter
4746
import com.w2sv.filenavigator.ui.designsystem.WeightedBox
4847
import com.w2sv.filenavigator.ui.modelext.color
4948
import com.w2sv.filenavigator.ui.modelext.exists
50-
import eu.wewox.textflow.TextFlow
49+
import eu.wewox.textflow.material3.TextFlow
5150
import kotlinx.collections.immutable.ImmutableList
5251
import kotlinx.coroutines.CoroutineScope
5352
import kotlinx.coroutines.launch
@@ -159,10 +158,7 @@ private fun MoveRecordView(
159158
private fun FileNameWithTypeAndSourceIcon(moveEntry: MovedFile, modifier: Modifier = Modifier) {
160159
Box(modifier = modifier) {
161160
TextFlow(
162-
text = remember(moveEntry.name) {
163-
AnnotatedString(moveEntry.name)
164-
},
165-
style = LocalTextStyle.current.copy(color = LocalContentColor.current),
161+
text = moveEntry.name,
166162
fontSize = MoveHistoryDefaults.FontSize,
167163
) {
168164
// Placeholder that determines the obstacle size

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ agp = "8.6.1"
66
kotlin = "2.0.20"
77
java = "17"
88
ksp = "2.0.20-1.0.25"
9-
triplet-play = "3.10.1"
9+
triplet-play = "3.11.0"
1010
protobuf-plugin = "0.9.4"
1111

1212
compose-tooling = "1.7.3"
@@ -16,12 +16,12 @@ junit = "4.13.2"
1616
lifecycle = "2.8.6"
1717
room = "2.6.1"
1818
compose-lint-checks = "1.3.1"
19-
kotlinxCollectionsImmutable = "0.3.7"
19+
kotlinxCollectionsImmutable = "0.3.8"
2020
composed = "0.0.5-rc2"
2121
materialKolor = "1.7.0"
2222
compose-destinations = "2.0.0-beta01"
2323
hiltNavigationCompose = "1.2.0"
24-
protobuf = "4.27.3"
24+
protobuf = "4.28.2"
2525
androidxActivity = "1.9.2"
2626
kotlinutils = "0.1.3-rc1"
2727
datastoreutils = "0.0.4-rc1"
@@ -83,7 +83,7 @@ kotlinx-collections-immutable = { module = "org.jetbrains.kotlinx:kotlinx-collec
8383
materialKolor = { module = "com.materialkolor:material-kolor", version.ref = "materialKolor" }
8484
compose-destinations = { module = "io.github.raamcosta.compose-destinations:core", version.ref = "compose-destinations" }
8585
compose-destinations-ksp = { module = "io.github.raamcosta.compose-destinations:ksp", version.ref = "compose-destinations" }
86-
textflow = { module = "io.github.oleksandrbalan:textflow", version = "1.1.2" }
86+
textflow = { module = "io.github.oleksandrbalan:textflow-material3", version = "1.2.1" }
8787

8888
# Testing
8989
junit = { module = "junit:junit", version.ref = "junit" }

0 commit comments

Comments
 (0)