You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is quite a few more packages than the ones configured in the current fiji.toml. And it highlights an important consideration: extensions to Fiji might need to augment the Jaunch configuration with additional flags.
A general way to address this, which would be compatible with the current ImageJ Updater, would be for Jaunch to look for additional files matching some convention, such as jaunch/fiji-x-*.toml, and load those as well. Then an update site could ship, say, jaunch/fiji-x-sciview.toml, with the additional --add-opens flags needed for that update site's functionality to behave properly with Java 17+.
The text was updated successfully, but these errors were encountered:
With c5101c3, TOML files get sourced based on the primary TOML config file's includes line. To tackle this issue, we could simply allow wildcards in there, so that additional config files could be dropped in matching the pattern.
From this Zulip chat: a scenery/sciview use case requires the following
--add-opens
flags:This is quite a few more packages than the ones configured in the current
fiji.toml
. And it highlights an important consideration: extensions to Fiji might need to augment the Jaunch configuration with additional flags.A general way to address this, which would be compatible with the current ImageJ Updater, would be for Jaunch to look for additional files matching some convention, such as
jaunch/fiji-x-*.toml
, and load those as well. Then an update site could ship, say,jaunch/fiji-x-sciview.toml
, with the additional--add-opens
flags needed for that update site's functionality to behave properly with Java 17+.The text was updated successfully, but these errors were encountered: