Releases: Kamel-Media/Kamel
Releases · Kamel-Media/Kamel
v0.7.2
v0.7.1
v0.7.0
v0.6.1
v0.6.0
v0.5.1
0.5.0
- Update to Kotlin v1.8.20
- Update Compose to version 1.4.0
- #23 Add support for Kotlin Native Targets:
iosArm64
,iosX64
,iosSimulatorArm64
,macosX64
,macosArm64
- #23 Support for JS Kotlin Target
- Experimental
ImageVectorDecoder
support for non-jvm targets which decodes xmls using https://github.com/pdvrieze/xmlutil - Experimental
SvgDecoder
for non-jvm targets
Note: the dependency has changed:
dependencies {
implementation("media.kamel:kamel-image:0.5.0")
}
credits:
@luca992
0.4.1
- Update Compose to version 1.2.0-alpha01-dev753.
- Experimental support for loading and failure painter resources in
lazyPainterResource
- Support getting the data source used when loading a resource.
- Introduce experimental
KamelImageBox
composable that provides full content customization based onResource<Painter>
parameter.
0.4.0
- Update dependencies by @cmota #14 #20 #21.
- Fix loading
ImageVector
inlazyPainterResource
. - Prevent loading data many times in
lazyPainterResource
by usingremember(data, resourceConfig)
. - Fix catching exceptions in
Flow
by @Syer10 #18. - Remove unused dependencies by @Syer10 #19.
- Add a handy function
httpFetcher(client: HttpClient)
to pass Ktor client directly #16.