@adiontaegerron/claude-multi-terminal 3.0.1 → 3.0.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.
@@ -12,7 +12,8 @@
12
12
  "Bash(git checkout:*)",
13
13
  "Bash(npm publish:*)",
14
14
  "Bash(npm link:*)",
15
- "Bash(npm:*)"
15
+ "Bash(npm:*)",
16
+ "Bash(claude-multi --version)"
16
17
  ],
17
18
  "deny": []
18
19
  }
package/index.html CHANGED
@@ -8,7 +8,7 @@
8
8
  </head>
9
9
  <body>
10
10
  <div id="app">
11
- <div id="version-banner">v3.0.1</div>
11
+ <div id="version-banner">v3.0.2</div>
12
12
  <div id="agents-bar">
13
13
  <div class="agents-title" id="agents-title-btn" title="Click to show all agent messages">Active Agents</div>
14
14
  <div id="agents-list">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adiontaegerron/claude-multi-terminal",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Multi-terminal editor for coordinating multiple Claude Code instances",
5
5
  "main": "main.js",
6
6
  "bin": {
package/renderer.js CHANGED
@@ -961,7 +961,7 @@ document.addEventListener('DOMContentLoaded', () => {
961
961
  const versionBanner = document.getElementById('version-banner');
962
962
  if (versionBanner) {
963
963
  // You can update this version manually or read from package.json
964
- versionBanner.textContent = 'v2.5.6';
964
+ versionBanner.textContent = 'v3.0.2';
965
965
  }
966
966
  });
967
967