agentgui 1.0.299 → 1.0.301

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/build-portable.js CHANGED
@@ -111,6 +111,12 @@ copyDir(path.join(hfNmSrc, 'onnxruntime-common'), path.join(hfNmDest, 'onnxrunti
111
111
  log('Copying webtalk...');
112
112
  copyDir(path.join(nm, 'webtalk'), path.join(destNm, 'webtalk'));
113
113
 
114
+ log('Copying audio-decode...');
115
+ copyDir(path.join(nm, 'audio-decode'), path.join(destNm, 'audio-decode'));
116
+ const audioDeps = new Set();
117
+ collectDeps('audio-decode', audioDeps);
118
+ for (const dep of audioDeps) copyPkg(dep);
119
+
114
120
  log('Copying @anthropic-ai/claude-code ripgrep (win32)...');
115
121
  const claudeSrc = path.join(nm, '@anthropic-ai', 'claude-code');
116
122
  const claudeDest = path.join(destNm, '@anthropic-ai', 'claude-code');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.299",
3
+ "version": "1.0.301",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",