-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cool! and a question #2
Comments
Thanks @tlambert03! We have a lot of images that are 4+ channel where a lot of the images come with a brightfield microscopy channel. This causes just too much initial visual overload to the user. If I ever get around to making a PR to |
ahhh, makes sense. a possible workaround would be to not use the |
I am a bit conflicted about splitting up into different |
added in napari/napari#1092 |
@tlambert03 I see that the sequences PR is now merged! Any idea as to when a new if napari.__version__ <= "{blah}":
visible = False
else:
visible = some_visible_sequence |
we're pushing to release real soon. so i expect within a week or two? Since technically your whole plugin can't work until the next napari release anyway, how about adding |
Ahh cool. Didn't know if that was "best practice" or not to have a version pin for the base repo of a plugin so that makes it easy. Will come back to this once |
I'm not sure it's something you'd always want to do... like, if there was plenty of functionality in your plugin available to users of previous versions of napari (or if there was lots of functionality that didn't relate to napari at all) then I would suggest something like |
@JacksonMaxfield we are on the verge of releasing 0.3.0 (next couple of days), and the biggest update is that we have forked pluggy to suit our own purposes (long story), so now the import is https://napari.org/docs/plugins/for_plugin_developers.html We'd be happy to submit a PR for these changes, but we'd still need you to push up a release to PyPI! Many thanks to @tlambert03 for basically everything to do with plugins in napari. =) |
Just a minor clarification: for now it will still “work” to import HookimplMarker from pluggy and make your own decorator (that code is cross compatible), so it’s more about setting “conventions” and examples 🙂. (I believe your current plugin on pypi would still work) |
Thanks for the update! I have a PR in to this package to make the necessary changes to resolve the issue that was originally brought up ("balancing initial render time and user feedback that the image has loaded") and upgrades to A quick look over would be much appreciated if you have the chance. Specifically, I have one question on this. Because this issue requires that I can pass multiple visible booleans to |
Ehhhh actually on more thinking of this. I am just not going to have a |
that's probably fine :) you're ahead of the game anyway, everyone will likely be on |
Looking forward to seeing |
thanks! |
just wanted to say it's very neat to see this package. just took it for a spin, and it works great. love the delayed option, and it works particularly well having both of those options with napari/napari#1023 where you'll be able to pick which one you want either by dragging/dropping or checking/unchecking:
I'm curious why you chose to go with a default of
visible = False
? (i was confused at first not seeing anything). Is that particularly useful for the way you use napari?The text was updated successfully, but these errors were encountered: