@rubytech/taskmaster 1.0.2 → 1.0.4
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/dist/build-info.json
CHANGED
|
@@ -214,7 +214,7 @@ export async function fetchNpmTagVersion(params) {
|
|
|
214
214
|
const timeoutMs = params?.timeoutMs ?? 3500;
|
|
215
215
|
const tag = params.tag;
|
|
216
216
|
try {
|
|
217
|
-
const res = await fetchWithTimeout(`https://registry.npmjs.org
|
|
217
|
+
const res = await fetchWithTimeout(`https://registry.npmjs.org/@rubytech%2Ftaskmaster/${encodeURIComponent(tag)}`, timeoutMs);
|
|
218
218
|
if (!res.ok) {
|
|
219
219
|
return { tag, version: null, error: `HTTP ${res.status}` };
|
|
220
220
|
}
|
package/package.json
CHANGED
|
@@ -33,7 +33,7 @@ Then open your web browser on any device connected to the same WiFi and go to:
|
|
|
33
33
|
|
|
34
34
|
You'll need a Raspberry Pi running Raspberry Pi OS with an internet connection (ethernet or WiFi).
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
You'll need a monitor, keyboard, and mouse connected to the Pi.
|
|
37
37
|
|
|
38
38
|
1. Open **Terminal** from the desktop taskbar (or press Ctrl+Alt+T)
|
|
39
39
|
2. Run:
|
|
@@ -47,25 +47,7 @@ curl -fsSL https://taskmaster.bot/install.sh | bash
|
|
|
47
47
|
|
|
48
48
|
You can also access the setup page from any other device on the same network at **http://taskmaster.local:18789/setup**.
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
1. From your Mac or PC, open a terminal and connect to the Pi. A fresh Pi advertises itself as `raspberrypi.local`:
|
|
53
|
-
|
|
54
|
-
```
|
|
55
|
-
ssh pi@raspberrypi.local
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
If that doesn't work, find the IP address instead (see "Finding Your Pi's IP Address" below) and use `ssh pi@<your-pi-ip>`.
|
|
59
|
-
|
|
60
|
-
3. Once connected, run:
|
|
61
|
-
|
|
62
|
-
```
|
|
63
|
-
curl -fsSL https://taskmaster.bot/install.sh | bash
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
4. Open a browser on your Mac/PC and go to: **http://taskmaster.local:18789/setup**
|
|
67
|
-
|
|
68
|
-
> After installation, Taskmaster runs in the background and starts automatically when the Pi restarts. You can disconnect the monitor or close the SSH session.
|
|
50
|
+
> After installation, Taskmaster runs in the background and starts automatically when the Pi restarts. You can disconnect the monitor and keyboard.
|
|
69
51
|
|
|
70
52
|
### Option C: Install on a Mac
|
|
71
53
|
|