From 626127b2922206020aedc8a52890e67c910ccaf0 Mon Sep 17 00:00:00 2001 From: seiko Date: Mon, 14 Oct 2024 19:53:52 +0800 Subject: [PATCH] update docs --- README.md | 10 +++++----- docs/docs/setup.mdx | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ad70b55..ac2744e6 100644 --- a/README.md +++ b/README.md @@ -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") } } } diff --git a/docs/docs/setup.mdx b/docs/docs/setup.mdx index a63ff3f0..d167dc15 100644 --- a/docs/docs/setup.mdx +++ b/docs/docs/setup.mdx @@ -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") } } } @@ -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" }