Skip to content

Commit

Permalink
发布 v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
leavesCZY committed Oct 28, 2023
1 parent e7d6b24 commit e34dc2b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ androidx-lifecycle-runtime-ktx = "2.6.2"
compose-bom = "2023.10.01"
compose-compiler = "1.5.3"

matisse = "1.1.1"
matisse-remote = "1.1.2"
matisse-publishing = "1.1.2"

coil = "2.4.0"

Expand Down Expand Up @@ -46,7 +47,7 @@ compose-foundation = { module = "androidx.compose.foundation:foundation" }
compose-material-icons = { module = "androidx.compose.material:material-icons-extended" }
compose-material3 = { module = "androidx.compose.material3:material3" }

matisse = { module = "io.github.leavesczy:matisse", version.ref = "matisse" }
matisse = { module = "io.github.leavesczy:matisse", version.ref = "matisse-remote" }

coil-compose = { module = "io.coil-kt:coil-compose", version.ref = "coil" }
coil-gif = { module = "io.coil-kt:coil-gif", version.ref = "coil" }
Expand Down
2 changes: 1 addition & 1 deletion matisse/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ if (signingKeyId != null
create<MavenPublication>("release") {
groupId = "io.github.leavesczy"
artifactId = "matisse"
version = "1.1.1"
version = libs.versions.matisse.publishing.get()
afterEvaluate {
from(components["release"])
}
Expand Down
3 changes: 3 additions & 0 deletions matisse/src/main/java/github/leavesczy/matisse/Matisse.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ data class Matisse(

}

/**
* @param captureStrategy 拍照策略
*/
@Parcelize
data class MatisseCapture(val captureStrategy: CaptureStrategy) : Parcelable

Expand Down

0 comments on commit e34dc2b

Please sign in to comment.