chore: update dependencies and clean up Windows icons

- Update package.json dependencies
  - Bump package version for consistency

- Update Cargo dependencies
  - Add new dependencies required for enhanced functionality
  - Update Cargo.lock with resolved versions

- Update tauri.conf.json with new build configurations
  - Add platform-specific settings
  - Configure bundle options for different targets

- Update .gitignore patterns
  - Add new build artifacts to ignore list

- Minor fix in claude.rs command implementation
This commit is contained in:
Vivek R
2025-08-01 17:12:47 +05:30
parent b4ddd360e5
commit 6a6392670d
18 changed files with 74 additions and 16 deletions

View File

@@ -47,5 +47,43 @@
"shell": {
"open": true
}
},
"bundle": {
"active": true,
"targets": [
"deb",
"rpm",
"appimage",
"app",
"dmg"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns"
],
"resources": [],
"externalBin": [],
"copyright": "© 2025 Asterisk. All rights reserved.",
"category": "DeveloperTool",
"shortDescription": "GUI app and Toolkit for Claude Code",
"longDescription": "Claudia is a comprehensive GUI application and toolkit for working with Claude Code, providing an intuitive interface for AI-assisted development.",
"linux": {
"appimage": {
"bundleMediaFramework": true
},
"deb": {
"depends": ["libwebkit2gtk-4.1-0", "libgtk-3-0"]
}
},
"macOS": {
"frameworks": [],
"minimumSystemVersion": "10.15",
"exceptionDomain": "",
"signingIdentity": null,
"providerShortName": null,
"entitlements": "entitlements.plist"
}
}
}