Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
77c5069
light and dark themed titlebar
thetronjohnson Aug 4, 2025
5f810fb
custom navbar
thetronjohnson Aug 4, 2025
b74cc7f
move icons to the titlebar
thetronjohnson Aug 6, 2025
4c638ef
ui updates to project and session listings
thetronjohnson Aug 6, 2025
c138d8d
made changes to session creation flow and fixed duplicate tab opening
thetronjohnson Aug 6, 2025
2374457
update the sessions ui
thetronjohnson Aug 6, 2025
ce27d4a
change new tab behaviour to open a new session chat
thetronjohnson Aug 6, 2025
53e304d
cleaned up settings page ui
thetronjohnson Aug 6, 2025
e4fa36d
fix padding in settings page
thetronjohnson Aug 6, 2025
6ce50e7
added minor border separation to the ui
thetronjohnson Aug 6, 2025
fa74649
move titlebar items to a menu
thetronjohnson Aug 7, 2025
32ce051
update the project lisiting ui ux
thetronjohnson Aug 7, 2025
0a27493
changed behavior of new tab icon and removed specifying project path …
thetronjohnson Aug 7, 2025
55dc661
ui changes to agent creation and usage dashboard
thetronjohnson Aug 7, 2025
3219fdd
update design strutures of MCP and Claude.md Page
thetronjohnson Aug 8, 2025
f79eb8c
improved visual contrast for themes
thetronjohnson Aug 8, 2025
edbbe77
use font inter
thetronjohnson Aug 8, 2025
a91b572
typography updates
thetronjohnson Aug 8, 2025
f10e2d0
micro interactions for buttons
thetronjohnson Aug 8, 2025
b824572
move privacy settings to the general tab
thetronjohnson Aug 8, 2025
aca5181
make heading and font colors more consistent
thetronjohnson Aug 8, 2025
2c09350
update usage dashboard design and performance improvements
thetronjohnson Aug 8, 2025
987dc77
inspecting issue with cc agents
thetronjohnson Aug 8, 2025
0fe5d3b
fix issue with cc agents
thetronjohnson Aug 8, 2025
b1ad7cb
improve ui and fix agent metrics display
thetronjohnson Aug 8, 2025
ea96e08
added custom tooltips
thetronjohnson Aug 8, 2025
b8847b8
implement tab and session persistence
thetronjohnson Aug 8, 2025
4131966
fix corners and added titlebar drag
thetronjohnson Aug 8, 2025
cd1d9a3
refactor(ui): remove unused props/imports and delegate project path s…
123vivekr Aug 8, 2025
5360d92
chore(session): simplify restored SessionSummary fields
123vivekr Aug 8, 2025
cd93d92
feat(ui): transparent window and rounded corners for Tauri
123vivekr Aug 10, 2025
02e5907
feat(titlebar): macOS-style traffic light controls and action dropdown
123vivekr Aug 10, 2025
1b8b48e
feat(titlebar): integrate custom titlebar UI; update app entry and gl…
123vivekr Aug 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ Think of Claudia as your command center for Claude Code - bridging the gap betwe
### Getting Started

1. **Launch Claudia**: Open the application after installation
2. **Welcome Screen**: Choose between CC Agents or CC Projects
2. **Welcome Screen**: Choose between CC Agents or Projects
3. **First Time Setup**: Claudia will automatically detect your `~/.claude` directory

### Managing Projects

```
CC Projects → Select Project → View Sessions → Resume or Start New
Projects → Select Project → View Sessions → Resume or Start New
```

- Click on any project to view its sessions
Expand Down
154 changes: 132 additions & 22 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ crate-type = ["lib", "cdylib", "staticlib"]
tauri-build = { version = "2", features = [] }

[dependencies]
tauri = { version = "2", features = ["protocol-asset", "tray-icon", "image-png"] }
tauri = { version = "2", features = [ "macos-private-api", "protocol-asset", "tray-icon", "image-png"] }
tauri-plugin-shell = "2"
tauri-plugin-dialog = "2"
tauri-plugin-fs = "2"
Expand All @@ -30,6 +30,9 @@ tauri-plugin-notification = "2"
tauri-plugin-clipboard-manager = "2"
tauri-plugin-global-shortcut = "2"
tauri-plugin-http = "2"
window-vibrancy = "0.5"
cocoa = "0.25"
objc = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
Expand Down
Loading