@wendongfly/zihi 1.1.3 → 1.1.4

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/dist/files.html CHANGED
@@ -576,8 +576,9 @@ function closeUploadSheet() {
576
576
 
577
577
  function handleFiles(files) {
578
578
  if (!files.length) return;
579
+ const copy = Array.from(files);
579
580
  closeUploadSheet();
580
- uploadFiles(files);
581
+ uploadFiles(copy);
581
582
  }
582
583
 
583
584
  async function uploadFiles(files) {
package/dist/package.json CHANGED
@@ -1 +1 @@
1
- {"type":"module","version":"1.1.2"}
1
+ {"type":"module","version":"1.1.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wendongfly/zihi",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "AI Agent terminal sharing with interactive permission approval via Claude Agent SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",