Results 281 comments of soywiz

I see. I was not aware of that! We could provide something like LocaleContext, and then populate it with extra information, like gender or other stuff, so it is extensible...

Would this work for you? ```kotlin class KlockLocalContext(...) fun KlockLocalContext.withGender(gender: KlockLocaleGender): KlockLocalContext enum class KlockLocaleGender {} // What about non-binary, etc.? Are used in any supported language? open fun getOrdinalByDay(day:...

Sure. Feel free to open a PR. Additionally, could you ask someone from Russia to review the PR too when available?

Done! It will be available on next version once I integrate changes from korge-next

> Hi @soywiz I wanted to push a branch for the german ordinals, but I am not allowed. Do you need to grant me rights? Hey @Bantolomeus you have to...

Feel free to make a PR: Here's the relevant code: https://github.com/korlibs/korge/blob/3e92eb84f30e232caa98d01fcd3c6129a33e88c4/korge/src/korlibs/korge/text/TextEditController.kt#L60-L76 Since you have the container view, you can attach an interval there that will be disposed automatically. That interval...

There is another use-case I would like to share: Here: https://docs.korge.org/ktcc/ There I'm doing black magic tricks that are really dirty to avoid allocations, and the code looks ugly. Being...

The KorGE plugin generates a standalone Android/iOS apps, and it is not directly modify it. If you want to publish it to Android with a custom activity, shouldn't it better...

Yes, generating/updating a `settings.gradle.kts` with a safe root name could help. Let's speciffy a valid name in templates for now.

It is possible to add for InputStream to the JVM yes. Also note that there are extensions for synchronous and asynchronous KorIO streams: https://github.com/korlibs/korge/blob/e2081e0e2af6f3432ac961ca636abd3c6ed7ddbf/korio/src/commonMain/kotlin/korlibs/io/hash/HashExt.kt#L14-L24