winsmux 0.32.2 → 0.32.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/install.ps1 +3 -1
  2. package/package.json +1 -1
package/install.ps1 CHANGED
@@ -12,7 +12,7 @@ param(
12
12
  $ErrorActionPreference = 'Stop'
13
13
  [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
14
14
 
15
- $VERSION = "0.32.2"
15
+ $VERSION = "0.32.3"
16
16
  $WINSMUX_DIR = Join-Path $HOME ".winsmux"
17
17
  $BIN_DIR = Join-Path $WINSMUX_DIR "bin"
18
18
  $BACKUP_DIR = Join-Path $WINSMUX_DIR "backups"
@@ -117,6 +117,7 @@ function Install-OrchestraSupportScripts {
117
117
  Download-File "winsmux-core/scripts/agent-watchdog.ps1" (Join-Path $BRIDGE_SCRIPTS_DIR "agent-watchdog.ps1")
118
118
  Download-File "winsmux-core/scripts/builder-worktree.ps1" (Join-Path $BRIDGE_SCRIPTS_DIR "builder-worktree.ps1")
119
119
  Download-File "winsmux-core/scripts/clm-safe-io.ps1" (Join-Path $BRIDGE_SCRIPTS_DIR "clm-safe-io.ps1")
120
+ Download-File "winsmux-core/scripts/colab-backend.ps1" (Join-Path $BRIDGE_SCRIPTS_DIR "colab-backend.ps1")
120
121
  Download-File "winsmux-core/scripts/operator-poll.ps1" (Join-Path $BRIDGE_SCRIPTS_DIR "operator-poll.ps1")
121
122
  Download-File "winsmux-core/scripts/doctor.ps1" (Join-Path $BRIDGE_SCRIPTS_DIR "doctor.ps1")
122
123
  Download-File "winsmux-core/scripts/logger.ps1" (Join-Path $BRIDGE_SCRIPTS_DIR "logger.ps1")
@@ -157,6 +158,7 @@ function Remove-ProfileExcludedSupportScripts {
157
158
  "agent-watchdog.ps1",
158
159
  "builder-worktree.ps1",
159
160
  "clm-safe-io.ps1",
161
+ "colab-backend.ps1",
160
162
  "operator-poll.ps1",
161
163
  "doctor.ps1",
162
164
  "logger.ps1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "winsmux",
3
- "version": "0.32.2",
3
+ "version": "0.32.3",
4
4
  "description": "Windows npm install surface for winsmux.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",