Waqas Tahir
10/13/2021, 4:18 PMChristopher Porto
10/14/2021, 4:08 AMBufferdImage
on compose?
Edit: Used image.toComposeImageBitmap()
Christopher Porto
10/14/2021, 8:32 PMMenuBar {
Menu("File") {
Item("Open", onClick = {})
}
}
ivanmorgillo
10/15/2021, 7:24 AMspierce7
10/16/2021, 3:13 AMCatry
10/16/2021, 2:00 PMAkram Bensalem
10/16/2021, 2:19 PMKarlo Lozovina
10/18/2021, 6:57 AMCatry
10/18/2021, 7:15 AMGordon
10/18/2021, 12:46 PMsmallshen
10/19/2021, 7:14 AMKirill Grouchnikov
10/19/2021, 6:02 PMm96
of Skia that has two breaking changes for working with shaders:
1. input
is now a reserved keyword, so if you used it as the name for your incoming uniform shader, pick something else
2. sample(input, coord)
is no longer supported. Use input.eval(coord)
instead to chain shadersCatry
10/21/2021, 12:08 PMJavier
10/22/2021, 1:32 PMUpdate dependency org.jetbrains.compose:compose-gradle-plugin to v1.0.0-beta1
Colton Idle
10/25/2021, 10:23 PMPHondogo
10/27/2021, 11:01 AMw: /home/p/.gradle/caches/modules-2/files-2.1/org.jetbrains.compose/compose-gradle-plugin/1.0.0-beta4-dev436/279bbd231b4797954cfe665eb375d3284aaf055b/compose-gradle-plugin-1.0.0-beta4-dev436.jar: Library has Kotlin runtime bundled into it
Ugi
10/28/2021, 2:26 PMmikehearn
10/28/2021, 4:27 PMmikehearn
10/28/2021, 4:27 PMval linkJars by tasks.registering {
dependsOn("jar")
val jar: Jar by tasks
doLast {
val archiveFile = jar.archiveFile.get().asFile
println("JAR outputs: $archiveFile")
val o = mkdir("$buildDir/all-libs")
o.listFiles().forEach { it.delete() }
for (file in sourceSets.named("main").get().runtimeClasspath.files + archiveFile) {
if (!file.exists() || file.isDirectory) continue
val dest = o.resolve(file.name).toPath()
Files.createLink(dest, file.toPath())
}
}
}
spierce7
10/29/2021, 5:44 PMchmod +x <file path>
. But when the app is installed on other peoples devices, the executable permission is lost. I think this was working before I upgraded to big sur. Does anyone know of a work around or a way to solve this?mikehearn
10/29/2021, 6:04 PMKirill Grouchnikov
10/29/2021, 6:09 PMmikehearn
10/29/2021, 6:11 PMspierce7
10/29/2021, 6:50 PMrsktash
10/31/2021, 9:20 AMTobias Suchalla
11/02/2021, 7:44 AMModifier.clickable()
by default. It threw me off because I did not see it mentioned anywhere and suddenly my custom hover effect looked somewhat different. Disabling the effect should be possible by passing a custom Indication
to the Modifier.clickable()
.Leon Linhart
11/05/2021, 1:00 PMspierce7
11/05/2021, 8:06 PMrcd27
11/06/2021, 9:49 AMwin
platform and it requires Java >=15
for Gradle, but when running distributable I catch NoClassDefFoundError
for com.sun.unsafe
which means that it is missing in bundled Java Runtime. (when I launch app from IDEA - all is fine, and code compiles).
Question: is it possible to createDistributable
for win
platform with lower Java Runtime version?
P.S: the same problem for linux. My app depends on library which seems to be built with Java 1.8rcd27
11/06/2021, 11:54 AMcompose.desktop {
application {
...
nativeDistributions {
...
windows {
console = true
...
}
}
}
}