Skip to content

Commit d9908a8

Browse files
committed
library: bump version to 0.5.2
1 parent d33732b commit d9908a8

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

convention-plugins/src/main/kotlin/root.publication.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
allprojects {
55
group = "top.yukonga.miuix.kmp"
6-
version = "0.5.1"
6+
version = "0.5.2"
77
}

docs/components/superbottomsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SuperBottomSheet
22

3-
`SuperBottomSheet` is a bottom sheet component in Miuix that slides up from the bottom of the screen. The height automatically adapts to the content size, but will not cover the status bar area. Supports swipe-to-dismiss gestures and custom styling.
3+
`SuperBottomSheet` is a bottom sheet component in Miuix that slides up from the bottom of the screen. Supports swipe-to-dismiss gestures and custom styling.
44

55
<div style="position: relative; max-width: 700px; height: 210px; border-radius: 10px; overflow: hidden; border: 1px solid #777;">
66
<iframe id="demoIframe" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;" src="../compose/index.html?id=superBottomSheet" title="Demo" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin"></iframe>

docs/iconGen/build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33

44
plugins { kotlin("jvm") }
55

6-
java { toolchain.languageVersion = JavaLanguageVersion.of(21) }
6+
java {
7+
toolchain.languageVersion = JavaLanguageVersion.of(21)
8+
}
79

8-
dependencies { implementation(project(":miuix")) }
10+
dependencies {
11+
implementation(project(":miuix"))
12+
}
913

1014
val iconsSourceDir = rootProject.layout.projectDirectory.dir("miuix/src/commonMain/kotlin/top/yukonga/miuix/kmp/icon").asFile
1115
val outputDir = layout.buildDirectory.dir("generated-svg")

docs/zh_CN/components/superbottomsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SuperBottomSheet
22

3-
`SuperBottomSheet` 是 Miuix 中的底部抽屉组件,从屏幕底部滑入显示。高度自动适应内容大小,但不会覆盖到状态栏区域。支持拖拽手势关闭和自定义样式
3+
`SuperBottomSheet` 是 Miuix 中的底部抽屉组件从屏幕底部滑入显示。持拖拽手势关闭和自定义样式
44

55
<div style="position: relative; max-width: 700px; height: 210px; border-radius: 10px; overflow: hidden; border: 1px solid #777;">
66
<iframe id="demoIframe" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;" src="../../compose/index.html?id=superBottomSheet" title="Demo" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin"></iframe>

example/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121

2222
val appName = "Miuix"
2323
val pkgName = "top.yukonga.miuix.uitest"
24-
val verName = "1.0.4"
24+
val verName = "1.0.5"
2525
val verCode = getVersionCode()
2626
val generatedSrcDir = layout.buildDirectory.dir("generated").get().asFile.resolve("miuix-example")
2727

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ androidx-window = "1.5.0"
55
jetbrains-compose = "1.9.0"
66
jetbrains-compose-hotReload = "1.0.0-rc01"
77
jetbrains-androidx-navigation = "2.9.0"
8-
jetbrains-compose-window-size = "1.9.0-beta05"
8+
jetbrains-compose-window-size = "1.9.0-beta06"
99
jetbrains-dokka = "2.0.0"
1010
kotlin = "2.2.20"
1111
spotless = "8.0.0"

iosApp/iosApp/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.4</string>
18+
<string>1.0.5</string>
1919
<key>CFBundleVersion</key>
20-
<string>563</string>
20+
<string>565</string>
2121
<key>LSRequiresIPhoneOS</key>
2222
<true/>
2323
<key>CADisableMinimumFrameDurationOnPhone</key>

0 commit comments

Comments
 (0)