Results 12 comments of Finn

Oh great, thanks! We havn't set up the oauth part at all. Sadly I've only access to the matrix server, but maybe the slack owner can figure the slack part...

Note: I just tried upgrading to latest greatest ``` plugins { id 'application' id 'org.openjfx.javafxplugin' version '0.0.8' id 'com.gluonhq.client-gradle-plugin' version '0.0.12' } ``` Which results in ``` > Task :nativeLink...

Thank you for the info. I retried it today, sadly the nativeCompile command produces tons on errors like ones below. nativeLink pretty much says the same as in the first...

Hi there, I guess an explanation would be helpful. We currently run into ``` Feb-6 13:50:32.171 ERROR Main Failed processing matrix message: { Error: An API error occurred: invalid_arguments at...

Quickest response ever! Thank you, I'll try that out =) Edit: Works like a charm!

Hey hey there, any news on this? I've a similiar use-case, nowadays I use records a lot as "custom types" for properties which have special requirements (must be all upper...

> Sorry for the long radio silence on this. However, this issue has been on my mind. I agree with @mazurkin that adding an overload to `withPrefabValues` is probably the...

TestBench End-To-End is also not working. Some of the problems seem to be related to how quarkus handles isolation of extensions with different classloaders. It looks like you guys should...

> In the starter @benjaminrau mentioned, why is needed for the injected properties to be use in @PostConstruct? it is possible to use them outside of the postconstruct? I'm not...

Yes, as per https://quarkus.io/guides/cdi-reference#simplified-constructor-injection this should work (given that all other things are right). For the starter example this would be ```java transient SecurityIdentityAssociation identity; public ProtectedView(SecurityIdentityAssociation identity) { this.identity...