winsmux 0.24.15 → 0.24.16
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.
- package/README.md +6 -0
- package/install.ps1 +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,12 @@ npm install -g winsmux
|
|
|
14
14
|
|
|
15
15
|
The `winsmux` npm command proxies to the bundled Windows installer flow.
|
|
16
16
|
|
|
17
|
+
User-facing setup docs:
|
|
18
|
+
|
|
19
|
+
- https://github.com/Sora-bluesky/winsmux/blob/main/docs/quickstart.md
|
|
20
|
+
- https://github.com/Sora-bluesky/winsmux/blob/main/docs/installation.md
|
|
21
|
+
- https://github.com/Sora-bluesky/winsmux/blob/main/docs/customization.md
|
|
22
|
+
|
|
17
23
|
## Public contract
|
|
18
24
|
|
|
19
25
|
- Windows only
|
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.24.
|
|
15
|
+
$VERSION = "0.24.16"
|
|
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"
|