Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
qdsfdhvh committed Oct 14, 2024
1 parent 27c225d commit 626127b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
+ api("io.github.qdsfdhvh:image-loader:1.8.4")
+ api("io.github.qdsfdhvh:image-loader:1.9.0")
// optional - Compose Multiplatform Resources Decoder
+ api("io.github.qdsfdhvh:image-loader-extension-compose-resources:1.8.4")
+ api("io.github.qdsfdhvh:image-loader-extension-compose-resources:1.9.0")
// optional - Moko Resources Decoder
+ api("io.github.qdsfdhvh:image-loader-extension-moko-resources:1.8.4")
+ api("io.github.qdsfdhvh:image-loader-extension-moko-resources:1.9.0")
// optional - Blur Interceptor (only support bitmap)
+ api("io.github.qdsfdhvh:image-loader-extension-blur:1.8.4")
+ api("io.github.qdsfdhvh:image-loader-extension-blur:1.9.0")
}
}
val jvmMain by getting {
dependencies {
// optional - ImageIO Decoder
+ api("io.github.qdsfdhvh:image-loader-extension-imageio:1.8.4")
+ api("io.github.qdsfdhvh:image-loader-extension-imageio:1.9.0")
}
}
}
Expand Down
10 changes: 5 additions & 5 deletions docs/docs/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
+ api("io.github.qdsfdhvh:image-loader:1.8.4")
+ api("io.github.qdsfdhvh:image-loader:1.9.0")
// optional - Moko Resources Decoder
+ api("io.github.qdsfdhvh:image-loader-extension-moko-resources:1.8.4")
+ api("io.github.qdsfdhvh:image-loader-extension-moko-resources:1.9.0")
// optional - Blur Interceptor (only support bitmap)
+ api("io.github.qdsfdhvh:image-loader-extension-blur:1.8.4")
+ api("io.github.qdsfdhvh:image-loader-extension-blur:1.9.0")
}
}
val jvmMain by getting {
dependencies {
// optional - ImageIO Decoder
+ api("io.github.qdsfdhvh:image-loader-extension-imageio:1.8.4")
+ api("io.github.qdsfdhvh:image-loader-extension-imageio:1.9.0")
}
}
}
Expand All @@ -38,7 +38,7 @@ Copy the following snippets if you are using [gradle version catalog](https://do

```xml title="libs.versions.toml"
[versions]
image-loader = "1.8.4"
image-loader = "1.9.0"

[libraries]
image-loader = { module = "io.github.qdsfdhvh:image-loader", version.ref = "image-loader" }
Expand Down

0 comments on commit 626127b

Please sign in to comment.