Skip to content

Tags: muxy-app/muxy

Tags

v1.1.0-beta.727

Toggle v1.1.0-beta.727's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add remote (SSH) workspaces (#739)

* Add remote (SSH) workspaces

Workspaces gain a type (local/ssh) + typeData. When an SSH workspace is
active, terminals, git, worktrees, the project picker, file ops, and the
muxy.exec/files/git extension APIs all execute on the remote host via the
system ssh binary — routed at a single execution seam (WorkspaceContext).

Closes #438

* review

* add home path to remote workspaces

* review 2

* review 3

* bug fixes

* add devices

* add remote projects

* bug fixes

* review

v1.0.0

Toggle v1.0.0's commit message
Bump BETA_VERSION to 1.1.0

v1.0.0-beta.718

Toggle v1.0.0-beta.718's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Drop built-in session restore; add tab lifecycle events + tabs.open f…

…or extensions (#725)

* Drop built-in session restore; add tab lifecycle events + tabs.open for extensions

* review

* tests

* review: gate nil-caller tab commands, slim tab.updated lookup

v0.29.0-beta.704

Toggle v0.29.0-beta.704's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add a permanent Home project pinned to the top of the sidebar (#711)

* Add a permanent Home project pinned to the top of the sidebar

* review

* fix issues

v0.29.0-beta.694

Toggle v0.29.0-beta.694's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add extension lifecycle close-interception and lifecycle events (#702)

* Add extension lifecycle close-interception and lifecycle events

* review

v0.29.0-beta.690

Toggle v0.29.0-beta.690's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix idle tabs are not waking with muxy cli (#699)

v0.29.0-beta.687

Toggle v0.29.0-beta.687's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Run full teardown + sidebar sync on extension worktree removal (#696)

* Run full teardown + sidebar sync on extension worktree removal

* review

v0.29.0-beta.680

Toggle v0.29.0-beta.680's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Disable newly discovered extensions by default (#690)

v0.29.0-beta.676

Toggle v0.29.0-beta.676's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Show app & subprocess resource usage in the status bar (#684)

* Show app & subprocess resource usage in the status bar

Adds a status-bar indicator (with a per-process popover grouped into
App/Extensions/Orphans) sampling CPU and phys_footprint via libproc.
Sampling only runs while visible and can be toggled off in Settings > Interface.

* review

* Fix strict-concurrency build error: make rootPID nonisolated

v0.29.0-beta.673

Toggle v0.29.0-beta.673's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix extension host socket connect race (#680)

* Retry extension host socket connection to fix startup race

The host connected once and died on a transient socket-not-ready error, requiring an app restart. Retry the connect (~5s) so it self-heals on startup and reload.

* review