Scott Palmer
Scott Palmer
When I select New File... FXML is not an available selection. When I have FXML files in my project, launching Scene Builder to edit them is not an option. This...
Gradle has support for native projects (C, C++, asm). If the Gradle plugin supported these there may even be the possibility of limited support for C/C++ projects using the Visual...
https://github.com/miho/NativeFX/blob/a89fd9e405e3865b6d91da2fc57a1e0aaffe9454/src/main/native/src/main/cpp/nativefx.cpp#L263 There are two checks if the key value is too large, and a check if the connection is null. Only the second 'if' appears to be relevant. Was this...
https://github.com/webrtc/apprtc/blob/c8e4f11ecccef40e92f577ede737e81d76b319ed/src/web_app/js/sdputils.js#L276 Shouldn't that say: m=video same issue just below that line as well.
Currently the recommendation on the web site if your app is non-modular is to throw everything out and not even use jlink or modules at all. That seems extreme to...
The older c and cpp plugins could be configured with custom tool chains to support building for linux-arm on linux x86_64. The new preferred cpp-library needs this ability. ### Expected...
badass-runtime-plugin version 1.12.0 Gradle 8.1.1 OpenJDK 20.0.1 ``` * What went wrong: Execution failed for task ':jre'. > class org.beryx.runtime.util.PackageCollection (in unnamed module @0x13baf173) cannot access class jdk.internal.org.objectweb.asm.Type (in module...
### Apache NetBeans version Apache NetBeans 19 release candidate ### What happened Was doing a rename refactoring when a dialog popped up telling me to report this issue. I was...
https://github.com/johanvos/javafx11samples/blob/2e9183d36658947d526a5ff21763d2f626d71975/topics/javafx3d/hello3d/build.gradle#L8 Consider instead: def os =System.getProperty('os.name').toLowerCase() if (os.contains('windows')) { ... } else if (os.contains('linux')) { ... } else if (os.contains('mac')) { ... }