tuiboard 0.7.1 → 0.7.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 +8 -0
- package/README.md +7 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to **tuiboard** are documented here.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.7.2] - 2026-06-02
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Documentation: the intro and npm description now lead with the modular pitch
|
|
12
|
+
(a kanban with three optional panels you switch on or off) instead of a
|
|
13
|
+
bundled four-zone dashboard.
|
|
14
|
+
|
|
8
15
|
## [0.7.1] - 2026-06-02
|
|
9
16
|
|
|
10
17
|
### Changed
|
|
@@ -91,6 +98,7 @@ First public release on npm. This entry captures the full feature set at launch.
|
|
|
91
98
|
|
|
92
99
|
Built with [OpenTUI](https://opentui.com) + SolidJS on Bun.
|
|
93
100
|
|
|
101
|
+
[0.7.2]: https://github.com/NazzarenoGiannelli/tuiboard/releases/tag/v0.7.2
|
|
94
102
|
[0.7.1]: https://github.com/NazzarenoGiannelli/tuiboard/releases/tag/v0.7.1
|
|
95
103
|
[0.7.0]: https://github.com/NazzarenoGiannelli/tuiboard/releases/tag/v0.7.0
|
|
96
104
|
[0.6.2]: https://github.com/NazzarenoGiannelli/tuiboard/releases/tag/v0.6.2
|
package/README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# tuiboard
|
|
2
2
|
|
|
3
|
-
A terminal
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
A terminal **kanban** board on plain markdown files, with three optional panels
|
|
4
|
+
you switch on or off: a **Today/Tomorrow planner** across all your boards, a
|
|
5
|
+
**24-hour agenda** with a read-only Google / Microsoft 365 calendar overlay, and
|
|
6
|
+
a **live view of your Claude Code sessions**. Run it as a pure kanban, or any mix
|
|
7
|
+
of the four. The board is always on; the rest is opt-in (see [Zones](#zones)).
|
|
7
8
|
|
|
8
9
|
Built with [OpenTUI](https://opentui.com) + SolidJS on Bun. Cross-platform
|
|
9
10
|
(Linux, macOS, Windows). No vendor lock-in: boards are CommonMark with
|
|
@@ -269,11 +270,11 @@ are rebuilt only after an in-app mutation.
|
|
|
269
270
|
|
|
270
271
|
## Layouts
|
|
271
272
|
|
|
272
|
-
Launch `tuiboard` with no flag for the default
|
|
273
|
+
Launch `tuiboard` with no flag for the default dashboard (every enabled zone).
|
|
273
274
|
|
|
274
275
|
| Flag | View | Use case |
|
|
275
276
|
|---|---|---|
|
|
276
|
-
| (none) | **Dashboard** —
|
|
277
|
+
| (none) | **Dashboard** — every enabled zone | Default; your configured layout |
|
|
277
278
|
| `--view=board` | Kanban + planner panel only | Focus mode, or a single WezTerm pane |
|
|
278
279
|
| `--view=timeline` | Timeline fullscreen | Wall-mounted "what's now" |
|
|
279
280
|
| `--view=agents` | Agent view fullscreen | Cross-machine session monitor |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tuiboard",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"description": "Terminal
|
|
3
|
+
"version": "0.7.2",
|
|
4
|
+
"description": "Terminal kanban for markdown task boards, with optional Today/Tomorrow planner, 24h agenda + calendar overlay, and a live Claude Code agent view. Use only the panels you want.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Nazzareno Giannelli <nazzareno.giannelli@gmail.com>",
|