Replace std::process::exit(0) with app_handle.exit(0) in the tray
quit handler so Tauri runs its shutdown sequence, dropping resources
and firing RunEvent::Exit cleanly.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Rename package from claude-app to claudify (v0.1.0)
- Add README.md with install/usage instructions
- Add CLAUDE.md with architecture, build, and known issues
- Add .desktop file for application menu integration
- Build target set to .deb only
- Remove failed CSD button workarounds, document upstream bug
- Remove gtk dependency (no longer needed)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Replace GTK header bar with buttonless version to work around
upstream bug where CSD buttons become non-interactive after
hide()/show() (tauri-apps/tauri#11856, tauri-apps/tao#1046)
- Tray menu now toggles between "Hide Claude" / "Show Claude"
- Left-click tray icon toggles window visibility
- Fix quit from tray (use std::process::exit to bypass keep-alive)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Standalone native desktop app wrapping claude.ai with:
- Direct webview navigation to claude.ai (not iframe)
- System tray with close-to-tray behavior
- Native notification bridge (JS overrides browser Notification API)
- Navigation filter allowing only Claude, Anthropic, and OAuth domains
- External links open in system browser
- Session persistence via WebKitGTK cookies/localStorage
- Builds .deb and AppImage bundles
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>