jide-oss
jide-oss copied to clipboard
JIDE Common Layer
it looks like there is a problem with 3.7.x release builds in general. If I use 3.7.6.jar downloaded from here, then I'd get the following NCF error in an app:...
Hi , I have upgraded jide-oss-3.7.1.jar and trying to run my java application (webstart and applet) in client system with Java 9. But i am getting below error Exception in...
On Big Sur run with Java 1.8 or 15 the JIDE code throws an error when parsing part of the Aqua Preferences file: java.io.IOException: parseInt: unsupported byte count:16 at com.jidesoft.plaf.aqua.BinaryPListParser.parseInt(BinaryPListParser.java:673)...
Hi, There seems to be only old versions available on maven central, is this intended? See: http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.jidesoft%22%20AND%20a%3A%22jide-oss%22
In the `pom.xml` file in the 3.7.6 distribution and tag 3.7.6 (https://github.com/jidesoft/jide-oss/blob/3.7.6/pom.xml), the `` in the POM still says "3.7.4". Maybe this is related to why there was trouble publishing...
I checked out the 3.7.6 source distribution on my macOS 10.14.6 machine. The build failed using a Java 9 compiler. ``` [jide-oss-3.7.6] $ javac --version javac 9.0.4 [jide-oss-3.7.6] $ mvn...
Running the latest demo (3.7.8) on JDK13 for _TriStateCheckBox Demo_ I received the error mentioned above with attached stack trace in `java.exe` console. This is clearly due to `com.jidesoft.plaf.windows.AnimationController` importing...
Using the latest version of JavaSE-13 whose version is "13" with no dots, I encountered a high CPU usage in my code which did not exist in JavaSE-12.0.2 or earlier....
I use code to detect `EDT` thread violations (e.g. a non-`EDT` thread modifies the `Swing` GUI): ``` private static void setupThreadViolationsDetector() { ThreadCheckingRepaintManager repaintManager = new ThreadCheckingRepaintManager(true); RepaintManager.setCurrentManager(repaintManager); } ```...
I have WebLaF installed. I called the following `LookAndFeelFactory.installJideExtension(LookAndFeelFactory.VSNET_STYLE); ` right before I setup the JideTabbedPane as follows : `JideTabbedPane tabPanel = new JideTabbedPane();` In windows, it works well. Somehow...