Sergey

Results 32 comments of Sergey

So, I tested the library for `mingwX64`: ```kotlin plugins { kotlin("multiplatform") version "1.9.23" } repositories { mavenCentral() } kotlin { mingwX64 { binaries.executable() } sourceSets { val mingwX64Main by getting...

Yes, I can confirm that with Kotlin `2.0.0-Beta4` version there is the issue. Looks like it has problem with dependencies resolving. I will create a ticket on JetBrains board. Thank...

Here is a link on JetBrains board: [KT-66707](https://youtrack.jetbrains.com/issue/KT-66707) Dependency library cannot be resolved

Hello @mgroth0! I just released new version of Kcron - 0.13.2 The issue is fixed via workaround, so I don't close the issue until [KT-66707](https://youtrack.jetbrains.com/issue/KT-66707) is not closed.

Seems we can use [multiplatform-swiftpackage](https://github.com/ge-org/multiplatform-swiftpackage) plugin for it.

The problem is introduced [here](https://github.com/square/kotlinpoet/commit/fc64ac36e925d21e4280a7f0c475dc00f8d4a396#diff-4b2bf7fcf76d7413d2e6c37f2c127ee758ce39707046cf1ebf43d5646f67fff4R44). I used `toClassName` for any classes. Right now it fails for generic ones. I can change this code: ```kotlin (this.declaration as KSClassDeclaration).getAllSuperTypes().any { it.toClassName() ==...

I know. It's just hard to make a small sample while it happens into `kotlinpoet-ksp`. So, I tried to explain.

GitHub actions?

Hello @ebelevics! Does `*` equal to `1` in this case?

So, if you need every second day, you should specify not day of month then. Based on this [generator](https://elmah.io/tools/cron-parser/#0_0_*/2_*_*) it is correct this expression means every second day of month:...