Skip to content

Commit ecc2c9c

Browse files
committed
build(version): 更新应用版本至1.0.6
- 修改 AppConst.kt 中的 APP_VERSION 常量 - 更新 gradle/libs.versions.toml 中的 app-version 设置 - 调整 iosApp 项目中的 MARKETING_VERSION - 移除 composeApp/build.gradle.kts 中的 compose.material 依赖 - 删除 composeApp/src/desktopMain/kotlin/main.kt 中的 Preview 注解
1 parent 9a70d76 commit ecc2c9c

File tree

6 files changed

+5
-6
lines changed

6 files changed

+5
-6
lines changed

composeApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ kotlin {
6464
implementation(compose.runtime)
6565
implementation(compose.foundation)
6666
implementation(compose.ui)
67-
implementation(compose.material)
67+
// implementation(compose.material)
6868
implementation(compose.material3)
6969
// implementation(compose.materialIconsExtended)
7070
implementation(compose.components.resources)

composeApp/src/commonMain/kotlin/core/shared/AppConst.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package io.github.vrcmteam.vrcm.core.shared
33
object AppConst {
44
const val APP_NAME = "VRCM"
55

6-
const val APP_VERSION = "1.0.5"
6+
const val APP_VERSION = "1.0.6"
77

88
const val APP_GITHUB_URL = "https://github.com/vrcm-team/VRCM"
99

composeApp/src/desktopMain/kotlin/main.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ fun main() = run {
5252
}
5353
}
5454

55-
@org.jetbrains.compose.ui.tooling.preview.Preview
5655
@Composable
5756
fun AppDesktopPreview() {
5857
ScaleOnScrollList()

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
app-code = "5"
3-
app-version = "1.0.5"
3+
app-version = "1.0.6"
44
app-packageName = "io.github.vrcmteam.vrcm"
55
agp = "8.6.1"
66
kotlin = "2.1.20"

iosApp/iosApp.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@
336336
"$(inherited)",
337337
"@executable_path/Frameworks",
338338
);
339-
MARKETING_VERSION = 1.0.5;
339+
MARKETING_VERSION = 1.0.6;
340340
PRODUCT_BUNDLE_IDENTIFIER = io.github.vrcmteam.vrcm;
341341
PRODUCT_NAME = "${APP_NAME}";
342342
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -367,7 +367,7 @@
367367
"$(inherited)",
368368
"@executable_path/Frameworks",
369369
);
370-
MARKETING_VERSION = 1.0.5;
370+
MARKETING_VERSION = 1.0.6;
371371
PRODUCT_BUNDLE_IDENTIFIER = io.github.vrcmteam.vrcm;
372372
PRODUCT_NAME = "${APP_NAME}";
373373
PROVISIONING_PROFILE_SPECIFIER = "";

0 commit comments

Comments
 (0)