openmux 0.3.1 → 0.3.2
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 +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,6 +30,21 @@ A terminal multiplexer with master-stack layout (Zellij-style), built with:
|
|
|
30
30
|
|
|
31
31
|
## Installation
|
|
32
32
|
|
|
33
|
+
> ⚠️ **Important Update Note for v0.3.0 Users**
|
|
34
|
+
>
|
|
35
|
+
> openmux v0.3.0 contains a quirky bug that prevents `openmux update` from working correctly.
|
|
36
|
+
> If you're on v0.3.0, please update manually using one of the following methods:
|
|
37
|
+
>
|
|
38
|
+
> ```bash
|
|
39
|
+
> # Option 1: Reinstall via install script
|
|
40
|
+
> curl -fsSL https://raw.githubusercontent.com/monotykamary/openmux/main/scripts/install.sh | bash
|
|
41
|
+
>
|
|
42
|
+
> # Option 2: Update via package manager
|
|
43
|
+
> bun update -g openmux
|
|
44
|
+
> # or
|
|
45
|
+
> npm update -g openmux
|
|
46
|
+
> ```
|
|
47
|
+
|
|
33
48
|
### Quick Install (curl)
|
|
34
49
|
|
|
35
50
|
```bash
|