bingocode 1.1.108 → 1.1.110

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bingocode",
3
- "version": "1.1.108",
3
+ "version": "1.1.110",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -51,7 +51,6 @@
51
51
  "auto-bind": "^5.0.1",
52
52
  "axios": "^1.14.0",
53
53
  "bidi-js": "^1.0.3",
54
- "bingocode": "^1.1.106",
55
54
  "chalk": "^5.6.2",
56
55
  "chokidar": "^5.0.0",
57
56
  "cli-boxes": "^4.0.1",
@@ -1057,7 +1057,7 @@ export const CliMenuManager: React.FC = () => {
1057
1057
  );
1058
1058
  }
1059
1059
 
1060
- // History List View (Default)
1060
+ // History List View (Default)
1061
1061
  const HIST_VISIBLE = MID_H - 2;
1062
1062
 
1063
1063
  return (
@@ -129,6 +129,7 @@ export const TopToolbar: React.FC<Props> = memo(({ ready, page, animEnabled, tip
129
129
  value={tipsEnabled ? 'Tips On' : 'Tips Off'}
130
130
  tone={uiTone as any}
131
131
  />
132
+ {windowCount > 0 && <Chip label="Active" value={windowCount} tone="success" />}
132
133
  </Box>
133
134
  </Box>
134
135
  );