pi-messenger-swarm 0.23.2 → 0.23.3

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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.23.3](https://github.com/monotykamary/pi-messenger-swarm/compare/v0.23.2...v0.23.3) (2026-04-06)
6
+
7
+
8
+ ### Features
9
+
10
+ * **overlay:** cap task list height to 7 lines ([6372fc6](https://github.com/monotykamary/pi-messenger-swarm/commit/6372fc6f21c6aae1c17926450c85d6f4a57eac3f))
11
+
5
12
  ### [0.23.2](https://github.com/monotykamary/pi-messenger-swarm/compare/v0.23.1...v0.23.2) (2026-04-06)
6
13
 
7
14
 
@@ -9,6 +9,8 @@ import { getLiveWorkers } from '../swarm/live-progress.js';
9
9
  const FEED_LINE_COUNT_CACHE_TTL_MS = 100;
10
10
  const FEED_WINDOW_SIZE = 200;
11
11
  const INPUT_CHROME_LINES = 8;
12
+ const MAX_TASK_LIST_HEIGHT = 7;
13
+ const MAX_SWARM_LIST_HEIGHT = 7;
12
14
 
13
15
  export interface FeedLineCountCache {
14
16
  channelId: string;
@@ -58,10 +60,10 @@ export function calculateBasePanelHeights(
58
60
  }
59
61
  } else if (hasWorkers) {
60
62
  feedHeight = Math.max(6, Math.floor(available * 0.65));
61
- mainHeight = available - feedHeight - 1;
63
+ mainHeight = Math.min(MAX_TASK_LIST_HEIGHT, available - feedHeight - 1);
62
64
  } else {
63
65
  feedHeight = Math.max(4, Math.floor(available * 0.55));
64
- mainHeight = available - feedHeight - 1;
66
+ mainHeight = Math.min(MAX_TASK_LIST_HEIGHT, available - feedHeight - 1);
65
67
  }
66
68
 
67
69
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-messenger-swarm",
3
- "version": "0.23.2",
3
+ "version": "0.23.3",
4
4
  "description": "Swarm-first multi-agent messaging and task orchestration extension for Pi",
5
5
  "type": "module",
6
6
  "author": "Tom X Nguyen",