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
117b87b
light and dark themed titlebar
thetronjohnson Aug 4, 2025
ba60b63
custom navbar
thetronjohnson Aug 4, 2025
4c261db
move icons to the titlebar
thetronjohnson Aug 6, 2025
8fc476a
ui updates to project and session listings
thetronjohnson Aug 6, 2025
50321b4
made changes to session creation flow and fixed duplicate tab opening
thetronjohnson Aug 6, 2025
65e2d7a
update the sessions ui
thetronjohnson Aug 6, 2025
ed06049
change new tab behaviour to open a new session chat
thetronjohnson Aug 6, 2025
19ff260
cleaned up settings page ui
thetronjohnson Aug 6, 2025
357a697
fix padding in settings page
thetronjohnson Aug 6, 2025
0f3624b
added minor border separation to the ui
thetronjohnson Aug 6, 2025
b47ffd6
move titlebar items to a menu
thetronjohnson Aug 7, 2025
bbac47d
update the project lisiting ui ux
thetronjohnson Aug 7, 2025
a9ec771
changed behavior of new tab icon and removed specifying project path …
thetronjohnson Aug 7, 2025
f85e52b
ui changes to agent creation and usage dashboard
thetronjohnson Aug 7, 2025
e10f39b
update design strutures of MCP and Claude.md Page
thetronjohnson Aug 8, 2025
b76916c
improved visual contrast for themes
thetronjohnson Aug 8, 2025
5ec2371
use font inter
thetronjohnson Aug 8, 2025
a2de063
typography updates
thetronjohnson Aug 8, 2025
05435d2
micro interactions for buttons
thetronjohnson Aug 8, 2025
b010bc3
move privacy settings to the general tab
thetronjohnson Aug 8, 2025
71cb2b2
make heading and font colors more consistent
thetronjohnson Aug 8, 2025
41de78a
update usage dashboard design and performance improvements
thetronjohnson Aug 8, 2025
5832404
inspecting issue with cc agents
thetronjohnson Aug 8, 2025
f6df280
fix issue with cc agents
thetronjohnson Aug 8, 2025
4142174
improve ui and fix agent metrics display
thetronjohnson Aug 8, 2025
f5e6cd5
added custom tooltips
thetronjohnson Aug 8, 2025
752ea3f
implement tab and session persistence
thetronjohnson Aug 8, 2025
5bdd9da
fix corners and added titlebar drag
thetronjohnson Aug 8, 2025
5cc5b83
refactor(ui): remove unused props/imports and delegate project path s…
123vivekr Aug 8, 2025
11ef1b0
chore(session): simplify restored SessionSummary fields
123vivekr Aug 8, 2025
9baaac2
feat(ui): transparent window and rounded corners for Tauri
123vivekr Aug 10, 2025
600d1e3
feat(titlebar): macOS-style traffic light controls and action dropdown
123vivekr Aug 10, 2025
c469951
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
Loading