@carlesandres/house 0.6.0 → 0.7.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 +14 -1
- package/README.md +2 -1
- package/dist/index.js +591 -249
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,18 @@ The publish workflow (`.github/workflows/publish.yml`) runs on the `release: pub
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.7.0] — 2026-08-30
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- `?` 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.
|
|
14
|
+
- `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.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- 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.
|
|
19
|
+
|
|
20
|
+
|
|
9
21
|
## [0.6.0] — 2026-08-24
|
|
10
22
|
|
|
11
23
|
### Added
|
|
@@ -421,7 +433,8 @@ The v1 MVP, published as `@carlesandres/openmdr` on npm.
|
|
|
421
433
|
|
|
422
434
|
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
435
|
|
|
424
|
-
[Unreleased]: https://github.com/carlesandres/house/compare/v0.
|
|
436
|
+
[Unreleased]: https://github.com/carlesandres/house/compare/v0.7.0...HEAD
|
|
437
|
+
[0.7.0]: https://github.com/carlesandres/house/compare/v0.6.0...v0.7.0
|
|
425
438
|
[0.6.0]: https://github.com/carlesandres/house/compare/v0.5.2...v0.6.0
|
|
426
439
|
[0.5.2]: https://github.com/carlesandres/house/compare/v0.5.1...v0.5.2
|
|
427
440
|
[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`
|
|
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 |
|