@openparachute/notes-ui 0.1.0-rc.4 → 0.1.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/CHANGELOG.md +34 -0
- package/dist/.parachute/info +1 -1
- package/meta.json +28 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog — @openparachute/notes-ui
|
|
2
2
|
|
|
3
|
+
## [0.1.0] - 2026-05-23
|
|
4
|
+
|
|
5
|
+
- **First stable release; promoted from rc.5.** Tagged `@latest` for
|
|
6
|
+
parachute-app bootstrap's bare-spec resolution.
|
|
7
|
+
- **Fix: ship `meta.json` so parachute-app bootstrap can install.**
|
|
8
|
+
parachute-app's auto-bootstrap path validates `@openparachute/notes-
|
|
9
|
+
ui`'s tarball against its [meta-schema][meta-schema] and requires
|
|
10
|
+
`name` + `displayName` + `path`. Tarballs through rc.4 included only
|
|
11
|
+
`dist/`, `LICENSE`, `README.md`, `package.json`, and `CHANGELOG.md`
|
|
12
|
+
— no `meta.json`, so bootstrap failed with:
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
[app] bootstrap: failed to install @openparachute/notes-ui: meta.json:
|
|
16
|
+
name: is required (string); displayName: is required (non-empty
|
|
17
|
+
string); path: is required (string)
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
This release adds `packages/notes-ui/meta.json` and includes it in
|
|
21
|
+
the `files` list. The file declares `name: "notes"`, `displayName:
|
|
22
|
+
"Notes"`, `path: "/app/notes"`, `scopes_required: ["vault:*:read",
|
|
23
|
+
"vault:*:write"]` (vault-agnostic — Notes' in-app vault picker
|
|
24
|
+
narrows per OAuth flow), `pwa: true` + `pwa_service_worker: "sw.js"`
|
|
25
|
+
(Notes is the canonical PWA-mode example per [design §18][s18]),
|
|
26
|
+
`iconUrl: "icon.svg"`, and the `required_schema.tags` declaration
|
|
27
|
+
for `capture` / `capture/text` / `capture/voice` mirroring
|
|
28
|
+
`NOTES_REQUIRED_SCHEMA` in `src/lib/vault/schema.ts` (patterns#57 —
|
|
29
|
+
Phase 2.0 validates the shape; Phase 2.1+ auto-provisions).
|
|
30
|
+
|
|
31
|
+
Canonical reference for the shape: [design doc §5][s5].
|
|
32
|
+
|
|
33
|
+
[meta-schema]: https://github.com/ParachuteComputer/parachute-app/blob/main/packages/app-host/src/meta-schema.ts
|
|
34
|
+
[s5]: https://github.com/ParachuteComputer/parachute.computer/blob/main/design/2026-05-21-parachute-apps-design.md#5-per-ui-metadata-schema--metajson-draft-07
|
|
35
|
+
[s18]: https://github.com/ParachuteComputer/parachute.computer/blob/main/design/2026-05-21-parachute-apps-design.md#18-caching--reload-strategy
|
|
36
|
+
|
|
3
37
|
## [0.1.0-rc.4] - 2026-05-22
|
|
4
38
|
|
|
5
39
|
- **Fix: resolve `link:` dep in published manifest** (`link:` →
|
package/dist/.parachute/info
CHANGED
package/meta.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://parachute.computer/schemas/app-ui-meta.json",
|
|
3
|
+
"name": "notes",
|
|
4
|
+
"displayName": "Notes",
|
|
5
|
+
"tagline": "Notes PWA backed by your vault.",
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"path": "/app/notes",
|
|
8
|
+
"iconUrl": "icon.svg",
|
|
9
|
+
"scopes_required": ["vault:*:read", "vault:*:write"],
|
|
10
|
+
"pwa": true,
|
|
11
|
+
"pwa_service_worker": "sw.js",
|
|
12
|
+
"required_schema": {
|
|
13
|
+
"tags": [
|
|
14
|
+
{
|
|
15
|
+
"name": "capture",
|
|
16
|
+
"description": "Notes captured directly by the user (text or voice)."
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "capture/text",
|
|
20
|
+
"description": "Text capture."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "capture/voice",
|
|
24
|
+
"description": "Voice capture."
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openparachute/notes-ui",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Parachute Notes UI bundle — the SPA installed under parachute-app as the canonical first app. No daemon, no module surface; just the built dist/.",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"url": "https://github.com/ParachuteComputer/parachute-notes.git",
|
|
11
11
|
"directory": "packages/notes-ui"
|
|
12
12
|
},
|
|
13
|
-
"files": ["dist", "README.md", "LICENSE", "CHANGELOG.md"],
|
|
13
|
+
"files": ["dist", "meta.json", "README.md", "LICENSE", "CHANGELOG.md"],
|
|
14
14
|
"scripts": {
|
|
15
15
|
"dev": "vite",
|
|
16
16
|
"build": "tsc -b && vite build",
|