Napari-napari

Latest version: v0.0.1

Safety actively analyzes 688238 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 10 of 20

0.4.8rc0

0.4.7

We're happy to announce the release of napari 0.4.7!
napari is a fast, interactive, multi-dimensional image viewer for Python.
It's designed for browsing, annotating, and analyzing large multi-dimensional
images. It's built on top of Qt (for the GUI), vispy (for performant GPU-based
rendering), and the scientific Python stack (numpy, scipy).


For more information, examples, and documentation, please visit our website:
https://github.com/napari/napari

Highlights

After nearly a year of planning, thanks to help from the fine folks at
[Quansight](http://labs.quansight.org/), napari now has a preferences dialog!
(2211). It's a little sparse at the moment but we look forward to meeting all
your customization needs!

Thanks to Matthias Bussonnier and Talley Lambert, we've also improved our
notification handling and can now show tracebacks in our error notifcations in
the GUI!

You can now use PyData/Sparse arrays as labels layers, thanks to work by Draga
Doncila Pop (across both napari and sparse itself) and Juan Nunez-Iglesias.
This is useful when painting labels across large volumes/time series. As a
side-benefit of this work, undo when painting labels now works across the full
volume rather than only in the currently-visible plane. (2339, 2396,
pydata/sparse435 and related PRs)

We've also continued to make improvements to our experimental octree support,
which now supports single scale tiled loading (2372, 2391). It is still
2D-only but continues to improve!

Last but not least, this is the first release since we launched our new website
at https://napari.org, powered by Jupyter Book! Check it out! Huge thanks to
Kira Evans, Talley Lambert, Lia Prins, Genevieve Buckley, and others who
contributed (and continue to contribute) to our efforts to improve our
documentation.

See below for the full list of changes.

New Features
- Notification Manager (2205)
- Add preference dialog (2211)
- Make napari strings localizable (2429)

Documentation
- Add profiling documentation (1998)
- Add release note about pydantic viewermodel (2334)
- Broken link fixed for Handling Code of Conduct Reports (2342)
- Update nbscreenshot docstring (2395)
- Clarify benchmark docs (2431)
- Make structural doc changes to better align with sitemap (2404)

Improvements
- ColorManager take 2 (w/ pydantic) (2204)
- Add basic selection model (2293)
- Tooltips2 (2310)
- Add a font size preview slider widget (2318)
- Read multiple page from pypi (2335)
- Use fancy indexing rather than full slices for label editing undo (2339)
- Consolidate polygon base object (2344)
- Use not mutable fields on Viewer where appropriate (2346)
- Generic Button to toggle state. (2359)
- Make `add_plugin_dock_widget` public, add CLI option (2360)
- Add spiral indexing to bring in tiles at center of FOV first (2363)
- Improve octree coverage process (2366)
- Single scale tiled rendering (2372)
- Add notification settings, add back console notifications (2377)
- ipython embed example (2378)
- Add contrast limits estimate for large plane (2381)
- Discover dock widgets during get info (2385)
- Add example of 2D, single-scale tiled rendering (2391)
- Preference screen size (2399)
- Add support for octree labels (2403)
- Auto-enable gui qt when in IPython (2406)
- Allow no vertex values to be passed to surface layer (2408)
- Add base shape outline for single scale tiled (2414)
- Change raw_to_displayed to only compute colours for all labels when required (2415)
- Highlight widget (2424)
- Remove brush shape from label UI (2426)
- Remember Preferences dialog size. (2434)
- `Selectable` mixin and `SelectableEventedList` (2439)
- Unify evented/nestedEvented list APIs (2440)
- Pretty-settings (2448)
- Add a button to Qt Error Notification to show tracebacks (2452)
- Update preferences dialog style to match designs (2456)

Bug Fixes
- Fix initialization of an empty Points layer (2341)
- Fix octree clim (2349)
- Fix json encoder inheritance on nested submodels for pydantic>=1.8.0 (2357)
- Fix shortcut to toggle grid. (2358)
- Fix rgb for octree (2362)
- Fix deleting points data in viewer (2383)
- Close floating docks on close event (2397)
- Handle None settings on load (2398)
- Fix preference cancel (2410)
- Fix shapes data setter (2411)
- Fix nd text on shapes layer (2412)
- Fix overly sensitive Points layer dragging (2413)
- Fix points delete (2419)
- Fix empty layer text (2420)
- Fix env-dependent test errors, remove warnings (2421)
- Fix Labels `save_history` benchmark (2430)
- Fix packaging (2436)
- Fix numpy warnings (2438)
- Fix some translation formatting (2453)
- Remove extra remove window action from window menu and use file menu
instead (2454)
- Fix translation II (2455)
- Fix for constant warning when using label brush (2460)
- Restore QtNDisplayButton (2464)

API Changes

- Using `layer.get_status()` without an argument was deprecated in version
0.4.4 and is removed in this version. Instead, use
`layer.get_status(viewer.cursor.position, world=True)` (2443).
- `layer.status` was deprecated in version 0.4.4 and is removed in this
version. Instead, use `layer.get_status(viewer.cursor.position, world=True)`
(2443).

Deprecations

We are moving to a model in which layers don't know about the cursor or current
view, resulting in the following two deprecations:

- `layer.displayed_coordinates` is deprecated (2327). Instead, use
`[layer.coordinates[d] for d in viewer.dims.displayed]`
- `layer.position` and `layer.coordinates` are deprecated (2443). Instead, use
`viewer.cursor.position` for the position in world coordinates, and
`layer.world_to_data(viewer.cursor.position)` for the position in data
coordinates.

We have also deprecated the `napari.qt.QtNDisplayButton`. Instead a more general
`napari.qt.QtStateButton` is provided.

Build Tools and Support
- Add environment flag for sparse library (2396)
- re-add plausible (2433)


14 authors added to this release (alphabetical)

- [alisterburt](https://github.com/napari/napari/commits?author=alisterburt) - alisterburt
- [DenisSch](https://github.com/napari/napari/commits?author=DenisSch) - DenisSch
- [Draga Doncila Pop](https://github.com/napari/napari/commits?author=DragaDoncila) - DragaDoncila
- [Gonzalo Peña-Castellanos](https://github.com/napari/napari/commits?author=goanpeca) - goanpeca
- [Grzegorz Bokota](https://github.com/napari/napari/commits?author=Czaki) - Czaki
- [Juan Nunez-Iglesias](https://github.com/napari/napari/commits?author=jni) - jni
- [Kevin Yamauchi](https://github.com/napari/napari/commits?author=kevinyamauchi) - kevinyamauchi
- [Kira Evans](https://github.com/napari/napari/commits?author=kne42) - kne42
- [Lorenzo Gaifas](https://github.com/napari/napari/commits?author=brisvag) - brisvag
- [Matthias Bussonnier](https://github.com/napari/napari/commits?author=Carreau) - Carreau
- [Nicholas Sofroniew](https://github.com/napari/napari/commits?author=sofroniewn) - sofroniewn
- [Pam](https://github.com/napari/napari/commits?author=ppwadhwa) - ppwadhwa
- [Talley Lambert](https://github.com/napari/napari/commits?author=tlambert03) - tlambert03
- [ziyangczi](https://github.com/napari/napari/commits?author=ziyangczi) - ziyangczi


12 reviewers added to this release (alphabetical)

- [Draga Doncila Pop](https://github.com/napari/napari/commits?author=DragaDoncila) - DragaDoncila
- [Gonzalo Peña-Castellanos](https://github.com/napari/napari/commits?author=goanpeca) - goanpeca
- [Grzegorz Bokota](https://github.com/napari/napari/commits?author=Czaki) - Czaki
- [Juan Nunez-Iglesias](https://github.com/napari/napari/commits?author=jni) - jni
- [Kevin Yamauchi](https://github.com/napari/napari/commits?author=kevinyamauchi) - kevinyamauchi
- [Lorenzo Gaifas](https://github.com/napari/napari/commits?author=brisvag) - brisvag
- [Matthias Bussonnier](https://github.com/napari/napari/commits?author=Carreau) - Carreau
- [Nicholas Sofroniew](https://github.com/napari/napari/commits?author=sofroniewn) - sofroniewn
- [Pam](https://github.com/napari/napari/commits?author=ppwadhwa) - ppwadhwa
- [Talley Lambert](https://github.com/napari/napari/commits?author=tlambert03) - tlambert03
- [Thomas A Caswell](https://github.com/napari/napari/commits?author=tacaswell) - tacaswell
- [ziyangczi](https://github.com/napari/napari/commits?author=ziyangczi) - ziyangczi

0.4.7rc1

0.4.7rc0

0.4.6

We're happy to announce the release of napari 0.4.6!
napari is a fast, interactive, multi-dimensional image viewer for Python.
It's designed for browsing, annotating, and analyzing large multi-dimensional
images. It's built on top of Qt (for the GUI), vispy (for performant GPU-based
rendering), and the scientific Python stack (numpy, scipy).


For more information, examples, and documentation, please visit our website:
https://github.com/napari/napari

Highlights
This release is the first that adds support for persistent settings in napari (2212).
Right now we just store the current theme and window geometry but we will be expanding
this to include a full set of preferences in future releases.

We've also made plugin installation from our plugin dialog more flexible, including
supporting installation from anything supported by `pip`, such as a
package name, url, or local file (2319).


New Features
- Add the ability to show contours of labels (2168)
- Add initial settings management for theme and window geometry (2212)
- More flexible plugin install (from url, name or file) (2319)


Improvements
- Use pydantic for viewer model (2066)
- Use vectorized indexing for xarray arrays in labels (2191)
- Add basic composite tree model (2217)
- Add Qt Tree Model and View (2222)
- Change status_format to return an existing string as-is (2235)
- Add translator stub and example (2254)
- Add hook implementation function name to plugin call order sorter (2255)
- Add `theme` parameter to `get_stylesheet` (2263)
- Add typing to event.py (2269)
- Add `canvas.background_color_override` (2270)
- QColoredSVGIcon class for dynamic colorized svg icons (2279)
- Add EventedSet class (2280)
- Refactor icon build process (2285)
- Add more tooltips (2292)
- Make contour thickness settable (2296)
- Add `_json_encode` method API for EventedModel serdes (2297)
- Don't subclass `Layer` directly from `Image`, (adds `_ImageBase`) (2307)
- Disable run pre release test outside napari main repository (2331)


Bug Fixes
- Fix QtPoll to poll when camera moves (2227)
- Prevent garbage collection of viewer during startup. (2262)
- Fix EventedModel signatures with PySide2 imported (2265)
- Remove callsignature (2266)
- Fix bug with not display points close to given layer (2289)
- Fix plugin discovery in bundle (use certifi context for urlopen) (2298)
- Call processEvents before nbscreenshot (2303)
- Add handling of python <= 3.7 for translator (2305)
- Add parent parameter to about dialog to correctly inherit and apply theme (2308)
- Remove unneeded stylesheet on QtAbout dialog (2312)
- Avoid importing xarray (and other array libs) for equality checkers (2325)


Build Tools and Support
- Add missing release notes 0.4.5 (2250)
- Explicitly document ability to implement multiple of the same hook (2256)
- Update install instructions to work with zsh default Mac shell (2258)
- Fix broken links in README (2275)
- Documentation typos (2294)
- Documentation on napari types in magicgui (2306)
- Pin pydantic < 1.8.0 (2323)
- Fix docs build with code execution (2324)
- Pin pydantic != 1.8.0 (2333)


12 authors added to this release (alphabetical)

- [Draga Doncila Pop](https://github.com/napari/napari/commits?author=DragaDoncila) - DragaDoncila
- [Genevieve Buckley](https://github.com/napari/napari/commits?author=GenevieveBuckley) - GenevieveBuckley
- [Gonzalo Peña-Castellanos](https://github.com/napari/napari/commits?author=goanpeca) - goanpeca
- [Grzegorz Bokota](https://github.com/napari/napari/commits?author=Czaki) - Czaki
- [Ian Hunt-Isaak](https://github.com/napari/napari/commits?author=ianhi) - ianhi
- [kir0ul](https://github.com/napari/napari/commits?author=kir0ul) - kir0ul
- [Matthias Bussonnier](https://github.com/napari/napari/commits?author=Carreau) - Carreau
- [Neil Weisenfeld](https://github.com/napari/napari/commits?author=nweisenfeld) - nweisenfeld
- [Nicholas Sofroniew](https://github.com/napari/napari/commits?author=sofroniewn) - sofroniewn
- [Pam](https://github.com/napari/napari/commits?author=ppwadhwa) - ppwadhwa
- [Philip Winston](https://github.com/napari/napari/commits?author=pwinston) - pwinston
- [Talley Lambert](https://github.com/napari/napari/commits?author=tlambert03) - tlambert03


13 reviewers added to this release (alphabetical)

- [Draga Doncila Pop](https://github.com/napari/napari/commits?author=DragaDoncila) - DragaDoncila
- [Genevieve Buckley](https://github.com/napari/napari/commits?author=GenevieveBuckley) - GenevieveBuckley
- [Gonzalo Peña-Castellanos](https://github.com/napari/napari/commits?author=goanpeca) - goanpeca
- [Grzegorz Bokota](https://github.com/napari/napari/commits?author=Czaki) - Czaki
- [Juan Nunez-Iglesias](https://github.com/napari/napari/commits?author=jni) - jni
- [Kevin Yamauchi](https://github.com/napari/napari/commits?author=kevinyamauchi) - kevinyamauchi
- [kir0ul](https://github.com/napari/napari/commits?author=kir0ul) - kir0ul
- [Matthias Bussonnier](https://github.com/napari/napari/commits?author=Carreau) - Carreau
- [Neil Weisenfeld](https://github.com/napari/napari/commits?author=nweisenfeld) - nweisenfeld
- [Nicholas Sofroniew](https://github.com/napari/napari/commits?author=sofroniewn) - sofroniewn
- [Pam](https://github.com/napari/napari/commits?author=ppwadhwa) - ppwadhwa
- [Talley Lambert](https://github.com/napari/napari/commits?author=tlambert03) - tlambert03
- [ziyangczi](https://github.com/napari/napari/commits?author=ziyangczi) - ziyangczi

0.4.6rc1

Page 10 of 20

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.