Jan Eglinger

Results 251 comments of Jan Eglinger

@egonw is this still an issue? It might be a problem with `jgo` that keeps the outdated version in its cache. Did you try removing your `.jgo` folder and then...

Also, even when entering an out-of-range value in the text field, the spinner arrows should do the right thing and set the value back to min or max (but this...

Relevant discussion also in https://github.com/imagej/imagej-legacy/pull/239

I didn't test, but `GenericUtils` is deprecated in favor of `Types` now, so the test added in #416 should cover the case here, too...

Regarding backwards compatibility with IJ1, I would expect a difference between these two macro calls: ```javascript run("ModuleWithParameters"); // will show a dialog ``` ```javascript run("ModuleWithParameters", ""); // won't show a...

See also some related discussion in https://github.com/scijava/scijava-common/issues/191. We should still make it possible to run from macro without having to provide values for inputs that have `visibility=MESSAGE`.

Another use case where this is relevant: `ilastik4ij`, see https://github.com/ilastik/ilastik4ij/pull/65. Let's say you have: ``` #@ Dataset inputImage #@ Dataset (required = false) predictionMask ``` If you now have a...

Thanks @sunsear for reporting, I can reproduce the issue. For the record, here's what changed between `scijava-common-2.83.3` (pinned in `pom-scijava-29.2.1`) and `scijava-common-2.85.0`: https://github.com/scijava/scijava-common/compare/scijava-common-2.83.3...scijava-common-2.85.0 I *suspect* it might be the changes...

The reason is this commit added between `2.83.4` and `2.84.0`: > Use Location, not String, in the I/O API (https://github.com/scijava/scijava-common/commit/b7285c5f807891097b5405b270952fcd32f2253c) ... and the fact that [`DatasetIOPlugin`](https://github.com/scifio/scifio/blob/bdb8ab764d58243d9f3a9f3936d468d695268a9c/src/main/java/io/scif/io/DatasetIOPlugin.java) in SCIFIO wasn't adapted...

@sunsear if I understand correctly, we have a binary version incompatibility issue here. Because `AbstractIOPlugin` changed its generic type from `String` to `Location`, the jars compiled against the old version...