Frederik Bertling

Results 94 comments of Frederik Bertling

I tried to get ObjectBox 3.0.0-alpha2 working with JPMS. It is better than 2.x.x because io.objectbox.converter is no longer split across two packages (java and java-api). I was able to...

> The underlying issue from the logs is `Unable to setup bless on disk.` I wasn't able to fix it, but the preinstalled image is working #432. How to use...

Sorry for not mentioning, I'm already using 2.0.0-SNAPSHOT.

The application itself is modular, yes (with module-info.class). I'm using gradle 6.6.1 with this extension: https://github.com/jjohannes/extra-java-module-info. It builds fine. I'm pretty sure that TornadoFX is not using a valid method,...

In the class Component.kt of TornadoFX the error is thrown and caught here: ``` private val _messages: SimpleObjectProperty = object : SimpleObjectProperty() { override fun get(): ResourceBundle? { if (super.get()...

I hope [this ](https://github.com/Burtan/TornadoFxResourceBundleBug)helps

[ResourceBundle.Control](https://github.com/edvin/tornadofx/blob/master/src/main/java/tornadofx/Messages.kt#L23) in Messages.kt has to be replaced when [using modules](https://docs.oracle.com/javase/9/docs/api/java/util/ResourceBundle.html).

One more thing about resources that will be important. Using the old javaClass.getResource* can only load resources from the calling module. They way TornadoFx works, the calling module is almost...

Any update on this? Pull request wanted?