@hyperpuncher/pi-ui 0.38.2 → 0.39.0
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 +53 -18
- package/dist/npm/server-main.js +123 -120
- package/package.json +7 -7
- package/static/app/file-transfer.js +13 -2
- package/static/app/file-transfer_test.ts +16 -0
- package/static/build/chunks/{code-theme-y49p9zss.js → code-theme-4n26zw8w.js} +1 -1
- package/static/build/chunks/{fonts-pcnzbv4q.js → fonts-fmjkwnbd.js} +1 -1
- package/static/build/chunks/{main-61mzprk0.js → main-3kywnyz0.js} +5 -5
- package/static/build/chunks/{main-wcnadmhs.js → main-r8cn68g6.js} +1 -1
- package/static/build/chunks/{workspace-review-3scrbyaw.js → workspace-review-p84b3znd.js} +1 -1
- package/static/build/main.js +4 -4
- package/static/vendor/datastar-inspector.min.js +0 -1021
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# pi-ui
|
|
2
2
|
|
|
3
|
-
keyboard-first minimal gui for [`pi`](https://pi.dev)
|
|
3
|
+
keyboard-first minimal gui for [`pi`](https://pi.dev)
|
|
4
4
|
|
|
5
5
|
<div>
|
|
6
6
|
<picture>
|
|
@@ -16,63 +16,98 @@ keyboard-first minimal gui for [`pi`](https://pi.dev).
|
|
|
16
16
|
</picture>
|
|
17
17
|
</div>
|
|
18
18
|
|
|
19
|
-
features
|
|
19
|
+
## features
|
|
20
20
|
|
|
21
21
|
- background sessions
|
|
22
22
|
- git review with commit history and inline comments
|
|
23
23
|
- markdown, syntax highlighting, and rich diffs
|
|
24
24
|
- file attachments with image previews
|
|
25
25
|
|
|
26
|
-
built with
|
|
26
|
+
## built with
|
|
27
27
|
|
|
28
28
|
- [`datastar`](https://data-star.dev/)
|
|
29
29
|
- [`kita-jsx`](https://github.com/kitajs/html)
|
|
30
30
|
- [`pierre-diffs`](https://diffs.com/)
|
|
31
31
|
- [`basecoat`](https://basecoatui.com/)
|
|
32
32
|
|
|
33
|
+
## try
|
|
34
|
+
|
|
35
|
+
> requires bun 1.4+
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
bunx @hyperpuncher/pi-ui
|
|
39
|
+
```
|
|
40
|
+
|
|
33
41
|
## install
|
|
34
42
|
|
|
35
|
-
|
|
43
|
+
### quick install
|
|
36
44
|
|
|
37
|
-
|
|
45
|
+
> the quick installers start pi-ui in the background and at login
|
|
38
46
|
|
|
39
|
-
|
|
47
|
+
#### linux and macos
|
|
40
48
|
|
|
41
49
|
```sh
|
|
42
|
-
|
|
50
|
+
curl -fsSL https://pi-ui.app/install | sh
|
|
43
51
|
```
|
|
44
52
|
|
|
45
|
-
|
|
53
|
+
#### windows
|
|
54
|
+
|
|
55
|
+
```powershell
|
|
56
|
+
irm https://pi-ui.app/install.ps1 | iex
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
open [http://127.0.0.1:31415](http://127.0.0.1:31415) in your browser
|
|
60
|
+
|
|
61
|
+
### package managers
|
|
62
|
+
|
|
63
|
+
#### bun
|
|
64
|
+
|
|
65
|
+
> requires bun 1.4+
|
|
46
66
|
|
|
47
67
|
```sh
|
|
48
|
-
|
|
68
|
+
bun i -g @hyperpuncher/pi-ui
|
|
49
69
|
```
|
|
50
70
|
|
|
51
|
-
|
|
71
|
+
#### arch
|
|
52
72
|
|
|
53
73
|
```sh
|
|
54
74
|
paru -S pi-ui-bin
|
|
55
|
-
pi-ui autostart enable
|
|
56
75
|
```
|
|
57
76
|
|
|
58
|
-
|
|
77
|
+
#### homebrew
|
|
59
78
|
|
|
60
79
|
```sh
|
|
61
80
|
brew install hyperpuncher/tap/pi-ui
|
|
62
|
-
brew services start pi-ui
|
|
63
81
|
```
|
|
64
82
|
|
|
65
|
-
|
|
83
|
+
> package-manager installs must be started with `pi-ui` or configured as a background service below
|
|
66
84
|
|
|
67
|
-
|
|
68
|
-
|
|
85
|
+
## background service
|
|
86
|
+
|
|
87
|
+
start pi-ui now and at login:
|
|
88
|
+
|
|
89
|
+
```sh
|
|
90
|
+
pi-ui service install
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
stop pi-ui and remove the service:
|
|
94
|
+
|
|
95
|
+
```sh
|
|
96
|
+
pi-ui service uninstall
|
|
69
97
|
```
|
|
70
98
|
|
|
71
|
-
|
|
99
|
+
### homebrew
|
|
100
|
+
|
|
101
|
+
homebrew manages the service separately:
|
|
102
|
+
|
|
103
|
+
```sh
|
|
104
|
+
brew services start pi-ui
|
|
105
|
+
brew services stop pi-ui
|
|
106
|
+
```
|
|
72
107
|
|
|
73
108
|
## development
|
|
74
109
|
|
|
75
|
-
requires bun 1.4
|
|
110
|
+
> requires bun 1.4+
|
|
76
111
|
|
|
77
112
|
```sh
|
|
78
113
|
bun ci
|