patchrelay 0.20.6 → 0.20.8

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "service": "patchrelay",
3
- "version": "0.20.6",
4
- "commit": "a427b2793bf2",
5
- "builtAt": "2026-03-26T08:34:14.765Z"
3
+ "version": "0.20.8",
4
+ "commit": "669292b8198c",
5
+ "builtAt": "2026-03-26T09:30:17.898Z"
6
6
  }
@@ -75,5 +75,5 @@ export function ItemLine({ item, isLast }) {
75
75
  content = renderDefault(item);
76
76
  break;
77
77
  }
78
- return (_jsxs(Box, { gap: 1, children: [_jsx(Text, { dimColor: true, children: prefix }), _jsx(Text, { color: statusColor(item.status), children: statusChar(item.status) }), content] }));
78
+ return (_jsxs(Box, { children: [_jsxs(Text, { dimColor: true, children: [prefix, " "] }), _jsxs(Text, { color: statusColor(item.status), children: [statusChar(item.status), " "] }), content] }));
79
79
  }
@@ -6,8 +6,10 @@ export function Timeline({ entries, follow }) {
6
6
  const { stdout } = useStdout();
7
7
  const rows = stdout?.rows ?? 24;
8
8
  const maxVisible = Math.max(5, rows - DETAIL_CHROME_ROWS);
9
- const tailSize = follow ? Math.min(maxVisible, entries.length) : Math.min(maxVisible, entries.length);
10
- const visible = entries.length > tailSize ? entries.slice(-tailSize) : entries;
9
+ // Follow mode: tail to screen height. Off: show everything.
10
+ const visible = follow && entries.length > maxVisible
11
+ ? entries.slice(-maxVisible)
12
+ : entries;
11
13
  const skipped = entries.length - visible.length;
12
14
  if (entries.length === 0) {
13
15
  return _jsx(Text, { dimColor: true, children: "No timeline events yet." });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.20.6",
3
+ "version": "0.20.8",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {