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
Copy file name to clipboardExpand all lines: docs/release/release_0_6_4.md
+17-5Lines changed: 17 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# napari 0.6.4
2
2
⚠️ *Note: these release notes are still in draft while 0.6.4 is in release candidate testing.* ⚠️
3
3
4
-
*Tue, Aug 12, 2025*
4
+
*Fri, Aug 15, 2025*
5
5
6
6
We’re happy to announce the release of napari 0.6.4!
7
7
@@ -13,18 +13,28 @@ For more information, examples, and documentation, please visit our website: htt
13
13
14
14
### Run scripts with napari from the command line
15
15
16
-
As a follow-up to the ability to drag-n-drop scripts into the napari window from 0.6.3, you can now run scripts directly from the command line using the `napari` command and the path to the script ([#8185](https://github.com/napari/napari/pull/8185) and [#8187](https://github.com/napari/napari/pull/8187)). For example `napari examples/magic_immage_arithmetic.py` will open napari and run the local script.
16
+
As a follow-up to the ability to drag-n-drop scripts into the napari window from 0.6.3, you can now run scripts directly from the command line using the `napari` command and the path to the script ([#8185](https://github.com/napari/napari/pull/8185) and [#8187](https://github.com/napari/napari/pull/8187)).
17
+
`napari examples/magic_immage_arithmetic.py` will open a local napari and run the local script.
18
+
You can also run scripts from a remote location ([#8208](https://github.com/napari/napari/pull/8208)), including Github, Gist, Gitlab, and the napari gallery.
19
+
For example, you can run `napari https://github.com/napari/napari/blob/main/examples/grid_mode.py`.
20
+
If you have `uv` you can even run a script without installing napari by using `uvx --with "napari[gallery,all]" napari https://napari.org/stable/_downloads/55f878f7d41dc4c7c2e28483653273cb/affine_coffee_cup.py`, serving as a clever way to trial napari or share your script. As always with remote connections, only use this feature with scripts you trust.
17
21
22
+
### Toggling the napari console now places focus on the console
23
+
24
+
Toggling the napari console (with the keyboard (`Cmd/Ctrl+Shift+C`), GUI, or command palette) will now transfer focus on the console, allowing you to immediately start typing commands without needing to click into the console first ([#8182](https://github.com/napari/napari/pull/8182)). We have found this to be a very useful feature for a keyboard-centric workflow combining the power of the command palette and console together.
18
25
19
26
## Improvements
20
27
21
28
- Remove old path handle in napari start ([#8185](https://github.com/napari/napari/pull/8185))
22
29
- Prevent `napari.run` from being executed when running scripts from napari ([#8187](https://github.com/napari/napari/pull/8187))
30
+
- Add option to load script from a remote location ([#8208](https://github.com/napari/napari/pull/8208))
23
31
24
32
## Bug Fixes
25
33
26
34
- Set focus after toggling dockwidget via `DockWidgetToggleAction` ([#8182](https://github.com/napari/napari/pull/8182))
0 commit comments