◐ Shell
clean mode source ↗

Also look into the modules folder for native jars by Stefterv · Pull Request #1345 · processing/processing4

Skip to content

Navigation Menu

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Merged

catilac

merged 1 commit into

Nov 26, 2025

Conversation

@Stefterv

This change will make sure that Processing will scan the $library/library/$native/modules folder within a library folder, fixing the issues with JavaFX not having access to its modules

Closes #1344
Closes #1327

Stefterv

jarHeads = new File(nativeLibraryPath).list(jarFilter);
if (jarHeads != null) {
for (String jar : jarHeads) {
cp.append(File.pathSeparatorChar);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since I am in here, I also cleaned up some duplicated code

catilac

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yay! Thanks so much for your effort on this

2 participants

@Stefterv @catilac