Skip to content

Releases: Kamel-Media/Kamel

v0.8.3

04 Nov 23:10
Compare
Choose a tag to compare
  • Kotlin 1.9.20
  • Compose 1.5.10
  • #68 Remove kotlin reflection depenedency for jvm by @luca992
    • Fixes #47 Proguard removing necessary fetcher classes

v0.8.2

22 Oct 23:16
Compare
Choose a tag to compare
  • Resolves #64: publish all android library variants for kamel-core

v0.8.1

18 Oct 19:27
Compare
Choose a tag to compare
  • Fixes #63 changes the disk cache location to be in user space on apple devices.

v0.8.0

16 Oct 02:58
Compare
Choose a tag to compare

NEW

  • Huge shoutout to @psuzn for #61 which adds a persistent disk cache implementation by leveraging ktor's CacheStorage feature

Disk Cache size (in MiB)

Kamel can now create a persistent disk cache for images by implementing ktor's CacheStorage feature.
The default config KamelConfig.Default installs this feature with a 10 MiB disk cache size.
The underlying disk cache is based on coil's multiplatform DiskLruCache implementation, (which itself is a port from libcore disklrucache).

KamelConfig {
    httpFetcher {
        // The size of the cache can be defined in bytes. Or `DefaultHttpCacheSize` (10 MiB) can be used. 
        httpCache(DefaultHttpCacheSize)
    }
}

v0.7.3

07 Sep 02:36
Compare
Choose a tag to compare

Updates to Kotlin 1.9.10 and Compose Multiplatform 1.5.1

v0.7.2

30 Aug 03:30
Compare
Choose a tag to compare

v0.7.1

28 Jul 03:45
Compare
Choose a tag to compare

Updates to Kotlin 1.9.0 and Compose Multiplatform 1.4.3

v0.7.0

22 Jul 04:20
Compare
Choose a tag to compare
  • #50 SVG Decoder with Batik: Adds an alternative jvm only Batik based svg decoder by @DatL4g

v0.6.1

30 Jun 07:23
Compare
Choose a tag to compare
  • Compose 1.4.1
  • Fix for Lazy Column Item Performance issue #39

v0.6.0

26 Jun 05:35
Compare
Choose a tag to compare
  • #43 Android SVG implementation & Better decoder selection by @DatL4g
  • #44 Android xml implementation by @luca992
  • #45 Commonize imageVectorDecoder & svgDecoder. Add to default KamelConfig by @luca992