komado 0.1.1 → 0.1.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 +7 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,22 +52,21 @@ Then just type **`komado`**. Re-run that same command any time to update. It nee
|
|
|
52
52
|
`git`, **Node ≥ 20**, and `npm`; it installs to `~/.local/share/komado` with the
|
|
53
53
|
launcher in `~/.local/bin` (override via `KOMADO_APP_DIR` / `KOMADO_BIN_DIR`).
|
|
54
54
|
|
|
55
|
-
**Windows** —
|
|
56
|
-
`komado` command on your `PATH
|
|
55
|
+
**Windows** — the PowerShell one-liner installs Node.js for you (via `winget`) if it's
|
|
56
|
+
missing, then komado, leaving a native `komado` command on your `PATH`:
|
|
57
57
|
|
|
58
58
|
```powershell
|
|
59
|
-
|
|
59
|
+
irm https://raw.githubusercontent.com/RyuPrad/komado/main/install.ps1 | iex
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
Already have **Node ≥ 20**? Install straight from PowerShell or CMD instead:
|
|
63
63
|
|
|
64
64
|
```powershell
|
|
65
|
-
|
|
65
|
+
npm i -g komado
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
that only runs inside that shell, never from CMD/PowerShell.
|
|
68
|
+
Don't use the `curl … | bash` line on Windows — under **Git Bash** or **WSL** it
|
|
69
|
+
installs a launcher that only runs inside that shell, never from CMD/PowerShell.
|
|
71
70
|
|
|
72
71
|
Uninstall from inside the app — **Settings → Uninstall komado…** (type `uninstall` to
|
|
73
72
|
confirm) — removes the app, its launcher, and `~/.komado` (config, reading progress,
|