tuiboard 0.9.1 → 0.9.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 +9 -0
- package/package.json +1 -1
- package/src/app.tsx +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.9.2] - 2026-09-08
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **A narrow terminal now opens on Today/Tomorrow**, like a wide one, instead of
|
|
14
|
+
on the first column of the first board. The default was conditioned on the
|
|
15
|
+
planner *fitting* rather than being enabled — the last place still reading
|
|
16
|
+
"does not fit" as "does not exist" — so single-pane skipped it.
|
|
17
|
+
|
|
10
18
|
## [0.9.1] - 2026-09-08
|
|
11
19
|
|
|
12
20
|
### Fixed
|
|
@@ -290,6 +298,7 @@ First public release on npm. This entry captures the full feature set at launch.
|
|
|
290
298
|
|
|
291
299
|
Built with [OpenTUI](https://opentui.com) + SolidJS on Bun.
|
|
292
300
|
|
|
301
|
+
[0.9.2]: https://github.com/NazzarenoGiannelli/tuiboard/releases/tag/v0.9.2
|
|
293
302
|
[0.9.1]: https://github.com/NazzarenoGiannelli/tuiboard/releases/tag/v0.9.1
|
|
294
303
|
[0.9.0]: https://github.com/NazzarenoGiannelli/tuiboard/releases/tag/v0.9.0
|
|
295
304
|
[0.8.5]: https://github.com/NazzarenoGiannelli/tuiboard/releases/tag/v0.8.5
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tuiboard",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
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",
|
package/src/app.tsx
CHANGED
|
@@ -126,9 +126,14 @@ applyResponsiveLayout();
|
|
|
126
126
|
process.stdout.on("resize", applyResponsiveLayout);
|
|
127
127
|
|
|
128
128
|
// Land on the Today/Tomorrow panel by default — for a daily-planning tool the
|
|
129
|
-
// first question is "what's on my plate today", and that panel answers it.
|
|
130
|
-
//
|
|
131
|
-
|
|
129
|
+
// first question is "what's on my plate today", and that panel answers it.
|
|
130
|
+
//
|
|
131
|
+
// The condition is that the planner is *enabled*, not that it fits: on a narrow
|
|
132
|
+
// terminal it does not fit beside anything, but single-pane makes it the one
|
|
133
|
+
// thing on screen, which is exactly where a daily planner belongs. Keying this
|
|
134
|
+
// off `visibleZones` was the last place still reading "does not fit" as "does
|
|
135
|
+
// not exist", and it left a vertical strip opening on the first board column.
|
|
136
|
+
if (!needsOnboarding && store.state.ui.enabledZones.planner) {
|
|
132
137
|
store.setActiveZone("planner");
|
|
133
138
|
}
|
|
134
139
|
|