@carlesandres/house 0.6.0 → 0.8.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 CHANGED
@@ -6,6 +6,27 @@ The publish workflow (`.github/workflows/publish.yml`) runs on the `release: pub
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.8.0] — 2026-08-30
10
+
11
+ ### Added
12
+
13
+ - `@house/options` specs may declare `footer: { icon, activate? }` so House can derive clickable footer controls from the catalog; wrap's `W` indicator now comes from that opt-in instead of a hard-coded Browser entry.
14
+ - Footer `T` and `O` controls cycle theme and File Navigator browse order one step forward (with a short notice), so multi-value options are adjustable without leaving the keyboard-or-click chrome.
15
+ - Choice footer controls show a declared short abbreviation of the current value (for example `op` / `re`) instead of a fixed letter, so the chip itself reflects state between Activate clicks.
16
+
17
+
18
+ ## [0.7.0] — 2026-08-30
19
+
20
+ ### Added
21
+
22
+ - `?` opens the command palette outside text inputs (same action as `ctrl+p`), so a single-key discovery path works without stealing `?` from the filter, palette query, or name prompts.
23
+ - `R` (`shift+r`) renames the selected file's basename via the same prompt shell as New file, so nested files stay in place without leaving House.
24
+
25
+ ### Changed
26
+
27
+ - Filter, command palette, and name prompts now use OpenTUI's single-line input, so left/right (and home/end) move the caret instead of only deleting from the end.
28
+
29
+
9
30
  ## [0.6.0] — 2026-08-24
10
31
 
11
32
  ### Added
@@ -421,7 +442,9 @@ The v1 MVP, published as `@carlesandres/openmdr` on npm.
421
442
 
422
443
  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.
423
444
 
424
- [Unreleased]: https://github.com/carlesandres/house/compare/v0.6.0...HEAD
445
+ [Unreleased]: https://github.com/carlesandres/house/compare/v0.8.0...HEAD
446
+ [0.8.0]: https://github.com/carlesandres/house/compare/v0.7.0...v0.8.0
447
+ [0.7.0]: https://github.com/carlesandres/house/compare/v0.6.0...v0.7.0
425
448
  [0.6.0]: https://github.com/carlesandres/house/compare/v0.5.2...v0.6.0
426
449
  [0.5.2]: https://github.com/carlesandres/house/compare/v0.5.1...v0.5.2
427
450
  [0.5.1]: https://github.com/carlesandres/house/compare/v0.5.0...v0.5.1
package/README.md CHANGED
@@ -133,11 +133,12 @@ The footer only shows essential app controls (`W`, `q`, `tab`, `s`, `ctrl+p`) to
133
133
  | `q` / `ctrl+c` | Quit |
134
134
  | `tab` | Toggle focus (sidebar ↔ reader) |
135
135
  | `s` | Toggle sidebar visibility |
136
- | `ctrl+p` | Command palette |
136
+ | `ctrl+p` / `?` | Command palette (`?` does not fire while typing in filter, palette, or name prompts) |
137
137
  | `w` | Toggle reader wrap |
138
138
  | `O` | Open current file in browser as HTML |
139
139
  | `E` | Open current file in `$EDITOR` (`$VISUAL` takes precedence) |
140
140
  | `N` | Prompt for a name, create an empty markdown file at the discovery root, then open it in `$EDITOR` |
141
+ | `R` | Rename the selected file's basename (same folder; does not move) |
141
142
  | `t` | Next theme |
142
143
  | `T` | Previous theme |
143
144
  | `L` | Toggle dark / light tone |