Nicola Beghin
Nicola Beghin
any news on this?
Please note: by using `mariadb-10.2` in place of `mariadb-10.1` image, it's working as expected. Linux instance-xxx 5.4.17-2136.306.1.3.el8uek.aarch64 #2 SMP aarch64 aarch64 aarch64 GNU/Linux
thanks @cytopia I used the workaround to have mariadb 10.2 in place of 10.1 so for now it's good anyway (not such a huge difference in terms of mysql compatibility)....
Hi guys, any ETA for this PR to be merged into master or should we just use the commit `yml`s to experiment?
Any news on this? I'm experiencing the same issue, will experiment with your previous suggestions!
Using like this at the moment: public class WMRequestParameterDiscoverer extends AwtRequestParameterDiscoverer { protected String getUserAgentString() { return String.format("Java/%s (%s %s; %s)", System.getProperty("java.version"), System.getProperty("os.name"), System.getProperty("os.version"), System.getProperty("os.arch")); } }
@dentex: in the end I used a different library for folder selection
I'm interested in this too. Works flawlessly but sometimes behaves like @j-roskopf wrote. I get > 11-05 15:27:47.820 I/MyApp(22768): onPause > 11-05 15:27:47.860 I/Timeline(22768): Timeline: Activity_launch_request id:com.android.documentsui time:99395512 > 11-05...
any news on this?
I ended up applied a quick-n-dirty fix: `FileUtils.java` public static boolean isCloudFile(Uri uri) { return "content".equalsIgnoreCase(uri.getScheme()); } then in my app if (FileUtils.isCloudFile(uri)) { path = handleRemoteFile(uri); } where `handleRemoteFile(final...