Skip to content

Commit ce18031

Browse files
committed
bump version
1 parent e14ca5a commit ce18031

4 files changed

Lines changed: 14 additions & 19 deletions

File tree

composeApp/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ android {
168168
targetSdk = 36
169169

170170
applicationId = "dev.datlag.mimasu"
171-
versionCode = 111
172-
versionName = "1.1.1"
171+
versionCode = 112
172+
versionName = "1.1.2"
173173

174174
multiDexEnabled = true
175175

composeApp/src/commonMain/kotlin/dev/datlag/mimasu/ui/navigation/search/Search.kt

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -178,22 +178,17 @@ fun Search(
178178
text = stringResource(Res.string.search_info_default),
179179
)
180180
} else {
181-
Box(
182-
modifier = Modifier.padding(
183-
padding.merge(PaddingValues(horizontal = 8.dp))
184-
)
181+
LazyVerticalGrid(
182+
columns = GridCells.Adaptive(100.dp),
183+
contentPadding = padding.merge(PaddingValues(horizontal = 8.dp)),
184+
horizontalArrangement = Arrangement.spacedBy(8.dp),
185+
verticalArrangement = Arrangement.spacedBy(8.dp)
185186
) {
186-
LazyVerticalGrid(
187-
columns = GridCells.Adaptive(100.dp),
188-
horizontalArrangement = Arrangement.spacedBy(8.dp),
189-
verticalArrangement = Arrangement.spacedBy(8.dp)
190-
) {
191-
items(tvResult.itemCount) { index ->
192-
ShowCard(
193-
tv = tvResult[index],
194-
onClick = onShowClicked
195-
)
196-
}
187+
items(tvResult.itemCount) { index ->
188+
ShowCard(
189+
tv = tvResult[index],
190+
onClick = onShowClicked
191+
)
197192
}
198193
}
199194
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
app = "1.1.1"
2+
app = "1.1.2"
33
about = "12.2.2"
44
activity = "1.10.1"
55
adaptive = "1.2.0-alpha02"

rive/rive.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'rive'
3-
spec.version = '1.1.1'
3+
spec.version = '1.1.2'
44
spec.homepage = ''
55
spec.source = { :http=> ''}
66
spec.authors = ''

0 commit comments

Comments
 (0)