@@ -21,26 +21,29 @@ For more details see [Compose multiplatform compatibility and versioning overvie
2121## Dependencies
2222
2323- Compose Multiplatform: [ 1.9.3] ( https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.9.3 )
24- - Lets-Plot Kotlin API: [ 4.12.0 ] ( https://github.com/JetBrains/lets-plot-kotlin/releases/tag/v4.12.0 )
25- - Lets-Plot Multiplatform: [ 4.8.1 ] ( https://github.com/JetBrains/lets-plot/releases/tag/v4.8.1 )
24+ - Lets-Plot Kotlin API: [ 4.12.1 ] ( https://github.com/JetBrains/lets-plot-kotlin/releases/tag/v4.12.1 )
25+ - Lets-Plot Multiplatform: [ 4.8.2 ] ( https://github.com/JetBrains/lets-plot/releases/tag/v4.8.2 )
2626
2727### Compose Multiplatform for Desktop
2828
2929``` kotlin
3030dependencies {
31+ implementation(compose.desktop.currentOs)
32+ implementation(compose.components.resources)
33+
3134 // Lets-Plot Kotlin API
32- implementation(" org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.12.0 " )
35+ implementation(" org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.12.1 " )
3336
3437 // Lets-Plot Multiplatform
35- implementation(" org.jetbrains.lets-plot:lets-plot-common:4.8.1 " )
36- implementation(" org.jetbrains.lets-plot:canvas:4.8.1 " )
37- implementation(" org.jetbrains.lets-plot:plot-raster:4.8.1 " )
38+ implementation(" org.jetbrains.lets-plot:lets-plot-common:4.8.2 " )
39+ implementation(" org.jetbrains.lets-plot:canvas:4.8.2 " )
40+ implementation(" org.jetbrains.lets-plot:plot-raster:4.8.2 " )
3841
3942 // Lets-Plot 'image export' (optional - enables exporting to raster formats)
40- implementation(" org.jetbrains.lets-plot:lets-plot-image-export:4.8.1 " )
43+ implementation(" org.jetbrains.lets-plot:lets-plot-image-export:4.8.2 " )
4144
4245 // Lets-Plot Compose UI
43- implementation(" org.jetbrains.lets-plot:lets-plot-compose:3.0.1 " )
46+ implementation(" org.jetbrains.lets-plot:lets-plot-compose:3.0.2 " )
4447}
4548```
4649See example: [ Compose desktop] ( https://github.com/JetBrains/lets-plot-compose-demos/blob/main/compose-desktop/build.gradle.kts ) demo.
@@ -50,15 +53,15 @@ See example: [Compose desktop](https://github.com/JetBrains/lets-plot-compose-de
5053``` kotlin
5154dependencies {
5255 // Lets-Plot Kotlin API
53- implementation(" org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.12.0 " )
56+ implementation(" org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.12.1 " )
5457
5558 // Lets-Plot Multiplatform
56- implementation(" org.jetbrains.lets-plot:lets-plot-common:4.8.1 " )
57- implementation(" org.jetbrains.lets-plot:canvas:4.8.1 " )
58- implementation(" org.jetbrains.lets-plot:plot-raster:4.8.1 " )
59+ implementation(" org.jetbrains.lets-plot:lets-plot-common:4.8.2 " )
60+ implementation(" org.jetbrains.lets-plot:canvas:4.8.2 " )
61+ implementation(" org.jetbrains.lets-plot:plot-raster:4.8.2 " )
5962
6063 // Lets-Plot Compose UI
61- implementation(" org.jetbrains.lets-plot:lets-plot-compose:3.0.1 " )
64+ implementation(" org.jetbrains.lets-plot:lets-plot-compose:3.0.2 " )
6265}
6366```
6467
0 commit comments