Tristan

Results 157 comments of Tristan

So I'm running into the same issue on Alpine (not using XOAUTH here) in relay mode. After trying a bunch of random things, it seems to get fixed automagically by...

Another one is that some non-Amazon S3 hosts have different part count limites (1000 in the case of mine). Meaning that in practice I can't store files with size larger...

In this case, it is Scaleway (cf https://www.scaleway.com/en/docs/object-storage-feature/#-Object-Storage-Limitation ) Not sure about headers, but maybe the "max MPU count" could be parameterizable and the size adjusted if the object will...

I think something like a `/etc/goofys.conf` (and a $HOME-stored per-user one) that supports passing alternate S3 endpoints, cache settings etc would make it overall simpler, because otherwise we'll end with...

Hi, After looking around, it seems that SLF4J went from the automatic module name of `slf4j.api` to an explicit module name of `org.slf4j`. And indeed this causes https://github.com/Tristan971/EasyFXML/blob/master/easyfxml/src/main/java/module-info.java#L24 to require...

In the meantime (as I'll update other dependencies and refresh things a bit), using slf4j `1.7.26` should work. see https://jira.qos.ch/browse/SLF4J-420

Thanks for closing but I'll keep it open until I have it fully fixed

It should work fine, however will require you to override this in your main class (which extends this class) https://github.com/Tristan971/EasyFXML/blob/master/easyfxml/src/main/java/moe/tristan/easyfxml/FxApplication.java#L61 Specifically the `.web(WebApplicationType.NONE)` part This was originally done because having...

Yeah that does fix it (alongside the other similar issue). Too bad but understandable... Guess I will have to get used to `@JsonSerialize(as = ...)` annotations all around :/

Won't as JavaFX is not cross-compatible at build time. If you compile locally on linux it will work though.