fix the warning about missing core.jar (resolves #154)

This commit is contained in:
Ben Fry
2021-06-23 07:09:12 -04:00
parent a914e10dfd
commit 7d926532cd
2 changed files with 7 additions and 1 deletions
+4 -1
View File
@@ -120,7 +120,10 @@ public class Base {
String missing = null;
if (mess.contains("Could not initialize class com.sun.jna.Native")) {
missing = "jnidispatch.dll";
} else if (mess.contains("NoClassDefFoundError: processing/core/PApplet")) {
} else if (t instanceof NoClassDefFoundError &&
mess.contains("processing/core/PApplet")) {
// Had to change how this was called
// https://github.com/processing/processing4/issues/154
missing = "core.jar";
}
if (missing != null) {
+3
View File
@@ -46,6 +46,8 @@ X But changing this for 4.0 alpha 5, because the JFileChooser is awful,
X and even worse on Big Sur, and worse than the Copy/Paste issue.
X "Could not run" "For more information, read revisions.txt and Help → Troubleshooting."
X need to drop revisions.txt here and just reference Troubleshooting
X NoClassDefError: processing/core/PApplet when starting 4.0a2 on Windows 10
X https://github.com/processing/processing4/issues/154
javafx
X move JavaFX to its own library, too many weird quirks that it includes
@@ -88,6 +90,7 @@ _ automatically import JavaFX if FX2D is in sketch? or tell user?
_ Code completion not working
_ https://github.com/processing/processing4/issues/177
_ confirmed not working from Sam's repo either
_ change application signature from Pde3 to Pde4 (and package name as well)
_ fix height of font size dropdown
_ You need to use "Import Library" to add processing.javafx.PGraphicsJavaFX