@carlesandres/house 0.5.0 → 0.5.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/CHANGELOG.md CHANGED
@@ -6,6 +6,35 @@ The publish workflow (`.github/workflows/publish.yml`) runs on the `release: pub
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.5.2] — 2026-08-01
10
+
11
+ ### Changed
12
+
13
+ - Converted the repository to a Turborepo monorepo with house under `apps/house`.
14
+ - CI, npm packaging, standalone builds, and release publishing now run through workspace tasks.
15
+ - Added local GitHub release/API verification with `vercel-labs/emulate`.
16
+ - Extracted the House-specific sidebar pane from Browser without changing behavior.
17
+ - Extracted the controlled file navigator into the private `@house/ui` workspace package while
18
+ keeping House's discovery, fuzzy ranking, keyboard routing, and product copy in the app.
19
+
20
+ ### Fixed
21
+
22
+ - Streamed matches that rank ahead of the current row no longer change the selected file.
23
+ - Pressing Return before the filter debounce elapses now opens the post-flush matching file.
24
+ - Standalone/npm binaries again render markdown with syntax highlighting. The compile step
25
+ now embeds OpenTUI's tree-sitter parser worker and sets `OTUI_TREE_SITTER_WORKER_PATH`
26
+ (same approach as OpenCode; see opentui#807).
27
+ - Release version bumps no longer retarget unpublished platform optionalDependencies in the
28
+ monorepo lockfile, so CI can install before those packages are on npm. The published main
29
+ package still pins platform packages to the release version.
30
+
31
+
32
+ ## [0.5.1] — 2026-07-25
33
+
34
+ ### Fixed
35
+
36
+ - Platform npm packages now preserve an executable `bin/house` after passing through GitHub Actions artifacts.
37
+
9
38
  ## [0.5.0] — 2026-07-23
10
39
 
11
40
  ### Added
@@ -30,6 +59,7 @@ The publish workflow (`.github/workflows/publish.yml`) runs on the `release: pub
30
59
  ### Added
31
60
 
32
61
  - Browser header now shows the active discovery root, and empty states reuse the same canonical root label for consistent launch context.
62
+
33
63
  ### Changed
34
64
 
35
65
  - Footer hints are now limited to essential app controls, leaving other actions discoverable through the command palette.
@@ -361,7 +391,9 @@ The v1 MVP, published as `@carlesandres/openmdr` on npm.
361
391
 
362
392
  Search, stdin, URL fetching, cross-file link following, `$EDITOR` hand-off, syntax highlighting, persistent config, OS-appearance auto-detect, single-binary distribution (issue [#2](https://github.com/carlesandres/openmdr/issues/2)), Homebrew tap. All tracked.
363
393
 
364
- [Unreleased]: https://github.com/carlesandres/house/compare/v0.5.0...HEAD
394
+ [Unreleased]: https://github.com/carlesandres/house/compare/v0.5.2...HEAD
395
+ [0.5.2]: https://github.com/carlesandres/house/compare/v0.5.1...v0.5.2
396
+ [0.5.1]: https://github.com/carlesandres/house/compare/v0.5.0...v0.5.1
365
397
  [0.5.0]: https://github.com/carlesandres/house/compare/v0.4.14...v0.5.0
366
398
  [0.4.14]: https://github.com/carlesandres/house/compare/v0.4.13...v0.4.14
367
399
  [0.4.13]: https://github.com/carlesandres/house/compare/v0.4.12...v0.4.13
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A terminal markdown reader and navigator — themable and configurable, with a keyboard-driven modern UI. Browse a directory of `.md` files without leaving the terminal.
4
4
 
5
- <video src="recordings/house-demo.mp4" controls muted loop playsinline></video>
5
+ <video src="apps/house/recordings/house-demo.mp4" controls muted loop playsinline></video>
6
6
 
7
7
  ## Features
8
8