Sebastian

Results 25 comments of Sebastian

I have a solution for 1.) ready here at: #2331 and a solution for 2.) at #2336.

I think this might already be possible. In [AbstractJPackageTask.kt](https://github.com/JetBrains/compose-jb/blob/master/gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/desktop/application/tasks/AbstractJPackageTask.kt) we already have ```kotlin if (targetFormat != TargetFormat.AppImage) { … cliArg("--resource-dir", jpackageResources) … } ``` where `jpackageResources` is defined here: ```kotlin...

ah, well, OK, but then there's also `cleanDirs(jpackageResources)` executed during `prepareWorkingDir`, so essentially anything we copy to `compose/tmp/resources` to modify the input data for Wix will be deleted before running...

Inspected the code further I just realized that there already is some code for handling the `bytes=…` part, it seems it just didn't work in my case. I'll push some...

Also I didn't see #14 already mentions the problem.

@rottajuliano you need to put your file `cert.pem` into a directory `resources` at the top level of your project with your current settings in your Gradle build file. You're referencing...

Well you have that already right?

I can avoid showing trips that start on one day and end on the next by limiting the start time from say 6 to 21 o'clock, but it includes some...

Hmm, I don't think the example code should be used in any code base outside this project. It's not really part of the public API, at least that's how I...

I think the problem is in this file, currently line 174: https://github.com/JetBrains/compose-multiplatform-core/blob/jb-main/compose/ui/ui/src/desktopMain/kotlin/androidx/compose/ui/util/Windows.desktop.kt ```kotlin // In fact, this size doesn't affect anything on Windows/Linux, and isn't used by macOS (macOS //...