Michał Goliński

Results 15 comments of Michał Goliński

I've bisected and stepped through the code a bit and found the culprit in #1829. Before the merge [`mapStateToCombinatorRendererProps`](https://github.com/eclipsesource/jsonforms/blob/d04e851f56537bcf6bda9240ab7e0ae5f09b4010/packages/core/src/util/renderer.ts#L926) used the following logic to find the fitting subschema: ```js ......

@rhjdvsgsgks This patch together with `desktoptojson` was enough to make this work on Plasma 6.0.1 in Arch. Some imports probably need to be unversioned per [porting guidelines](https://develop.kde.org/docs/plasma/widget/porting_kf6/#porting-an-existing-plasmoid), but now at...

No, https://github.com/peregrine-cms/enhancements/issues/33 works this way because `/content` is anonymously readable, therefore no authentication is performed (and the form is not displayed) and markup is simply returned. Afterwards the `/perapi` endpoints...

We listen to books and Gson was meant only as a quick comparison, not a solution. Probably Moshi is a more current alternative. Later I will take a deeper look...

I've tried adding some tests to run relevant code on a PC during development and converting everything to use kotlinx.serialization. There are some problems with how the model classes derive...

I created an instrumented test at https://github.com/golinski/audiobookshelf-app/blob/kotlinx-serialization/android/app/src/androidTest/kotlin/com/audiobookshelf/app/SerializationInstrumentedTest.kt The two tests in succession do the following * First test * deserialize a single personalized library json (to see the cold start...

Yes, one line for a single deserialization operation. The first six lines are from the two personalized libraries, the last three from the items in progress.

I took a quick shot at changing everything to Moshi and failed on the first try. Kotlin serilization seemed nicer, as more problems with the conversion might be caught at...

I've pushed changes to make sure the serialization path works with Moshi as well. I guess these objects are probably never serialized (and even if they are, it's still done...

I would love to do the same treatment to the tile that pops up on the Android Auto home screen, as it also seems to take a long while to...