Skip to content

v0.5.1

Choose a tag to compare

@github-actions github-actions released this 01 Sep 00:22
087816c

0.5.1 (2026-09-01)

Bug Fixes

  • zoom the notebook, not the app — anchored, scoped, with a reset control (#69) (0b80039)

Install the desktop app

No Julia needed — the app installs one for you (bundled juliaup), or uses whichever
Julia versions you already have.

Platform Download
macOS (Apple Silicon) SpaceStation-mac-arm64.dmg
macOS (Intel) SpaceStation-mac-x64.dmg
Windows SpaceStation-win-x64.msi
Linux SpaceStation-linux-x64.AppImage

First launch — one time only

These builds are not code-signed yet, so each OS asks once before it will run a new
app. Nothing here is permanent; it is the same step you take for any unsigned download.

macOS — open the .dmg and drag SpaceStation into Applications (do not run it
from the disk image). Then paste both lines into Terminal:

xattr -dr com.apple.quarantine "/Applications/SpaceStation.app"
codesign --force --deep --sign - "/Applications/SpaceStation.app"

Then open SpaceStation normally. The first line clears the download quarantine; the second
re-signs the app locally, which is what clears "SpaceStation is damaged and can't be
opened"
— macOS shows that wording for any app that isn't signed with a paid Developer ID,
and on Apple Silicon clearing quarantine alone is often not enough. Nothing is actually
damaged. (No admin rights? Drag it to ~/Applications instead and use that path in both
commands.)

Both steps disappear once the project has an Apple Developer ID and releases are notarized.

Windows — double-click SpaceStation-win-x64.msi. If SmartScreen shows "Windows
protected your PC"
, click More info → Run anyway.

Upgrading from an earlier version? Uninstall it first. Installing a newer .msi over
an existing install currently reconfigures the old version instead of replacing it, so the
update looks like it did nothing. Remove SpaceStation from Settings → Apps → Installed
apps
, then run the new .msi. This is a limitation of the installer we generate, tracked
separately; a first-time install is unaffected.

Linux — mark the AppImage executable and run it:

chmod +x SpaceStation-linux-x64.AppImage
./SpaceStation-linux-x64.AppImage

Prefer the terminal?

import Pkg; Pkg.Apps.add(url="https://github.com/GroupTherapyOrg/SpaceStation.jl")

That installs the spacestation CLI on its own. The desktop app registers the same CLI
for you and puts it on your PATH, so new terminals pick it up either way.