Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
7726d1b
Tighten history button spacing
thomaspblock Jun 23, 2026
d8baf23
Add project git activity data plumbing
thomaspblock Jun 25, 2026
2bf75ca
Refine project workspace UI
thomaspblock Jun 25, 2026
e83039e
Merge remote-tracking branch 'origin/main' into fix-history-button-sp…
thomaspblock Jun 25, 2026
9ad0acf
Refine project UI surfaces
thomaspblock Jun 25, 2026
2a2be6b
Improve project repository browser
thomaspblock Jun 25, 2026
73d5029
Show repository file change times
thomaspblock Jun 25, 2026
aa184fe
Add project repository git workflow UI
thomaspblock Jun 26, 2026
7ac1274
Merge origin/main into gitbuzz-explorations
thomaspblock Jun 26, 2026
e04ff69
Match projects header chrome blur
thomaspblock Jun 26, 2026
84594c4
Fix project detail header blur
thomaspblock Jun 26, 2026
01e97c9
Merge remote project header chrome fix
thomaspblock Jun 26, 2026
03b753f
Offset projects content below glass header
thomaspblock Jun 26, 2026
14d5849
Flow projects content below chrome header
thomaspblock Jun 26, 2026
257a727
Fix project chrome content offset
thomaspblock Jun 26, 2026
c0f809b
Merge remote project chrome offset attempts
thomaspblock Jun 26, 2026
7fe46d4
Make projects repository-first
thomaspblock Jun 26, 2026
32bdcbb
Polish project repository details
thomaspblock Jun 26, 2026
842a3d0
Add project pull request surfaces
thomaspblock Jun 26, 2026
0afad70
Make project activity feel like a feed.
thomaspblock Jun 27, 2026
9acf798
Show only git contributors in project contributors
thomaspblock Jun 29, 2026
a541360
Merge origin/main into gitbuzz-explorations
thomaspblock Jun 29, 2026
f12da7d
Polish project detail header
thomaspblock Jun 29, 2026
e1ee052
Merge origin/gitbuzz-explorations into gitbuzz-explorations
thomaspblock Jun 29, 2026
6ee2ee9
Polish project activity timeline
thomaspblock Jun 29, 2026
369dfa5
Polish project navigation chrome
thomaspblock Jun 29, 2026
5eaa7d5
Scope project contributors to active branch
thomaspblock Jun 29, 2026
32a5c60
Condense project detail helper sections
thomaspblock Jun 30, 2026
59aaff6
Merge origin/main into gitbuzz-explorations
thomaspblock Jun 30, 2026
3b4c294
Merge remote-tracking branch 'origin/gitbuzz-explorations' into gitbu…
thomaspblock Jun 30, 2026
6f45188
Refine projects toolbar layout
thomaspblock Jun 30, 2026
29a5091
Merge remote-tracking branch 'origin/main' into gitbuzz-explorations
thomaspblock Jun 30, 2026
0581738
Refine project list column layout
thomaspblock Jun 30, 2026
7910426
Show local and remote project repo state
thomaspblock Jun 30, 2026
91b0893
Merge remote-tracking branch 'origin/main' into gitbuzz-explorations
thomaspblock Jun 30, 2026
89d7d52
Add project pull request details
thomaspblock Jul 1, 2026
cac56f9
Reuse rich composer for pull request comments
thomaspblock Jul 1, 2026
470f29e
Merge origin/main into gitbuzz-explorations
thomaspblock Jul 1, 2026
3f61153
Fix local project repo discovery fallback
thomaspblock Jul 1, 2026
98354e4
Improve project pull request views
thomaspblock Jul 1, 2026
22fe14d
Show real project pull request diffs
thomaspblock Jul 1, 2026
91bc43b
Polish project file navigation
thomaspblock Jul 1, 2026
3f010f5
Add GitHub-style overview panels for projects
thomaspblock Jul 1, 2026
d388430
Improve project pull request overview
thomaspblock Jul 2, 2026
83da77c
Polish projects overview and card details
thomaspblock Jul 2, 2026
2065a1e
Add issue detail pages and GitHub-style PR header
thomaspblock Jul 2, 2026
d7da1a7
Open project repositories in a terminal
thomaspblock Jul 2, 2026
410be3e
Polish projects UI layout and labels
thomaspblock Jul 2, 2026
aa36cd1
Merge remote-tracking branch 'origin/main' into gitbuzz-explorations
thomaspblock Jul 2, 2026
7b60f83
Consolidate duplicated git plumbing and terminal handlers
thomaspblock Jul 2, 2026
8b5d784
Fix projects smoke spec for redesigned cards
thomaspblock Jul 2, 2026
3adfccd
Retrigger CI
thomaspblock Jul 2, 2026
a87de0f
Merge remote-tracking branch 'origin/main' into gitbuzz-explorations
thomaspblock Jul 2, 2026
204cd04
Remove one-off screenshot specs from smoke suite
thomaspblock Jul 2, 2026
0088435
Address review feedback: trust boundaries, git hardening, and UI fixes
thomaspblock Jul 3, 2026
c5cbbfd
Keep project comments out of Pulse feeds; document NIP-34 deviations
thomaspblock Jul 3, 2026
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
1 change: 0 additions & 1 deletion crates/buzz-relay/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
## relay-v0.1.1

- Initial release

8 changes: 8 additions & 0 deletions desktop/src-tauri/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ pub mod pairing;
mod personas;
mod prevent_sleep;
mod profile;
mod project_git;
mod project_git_diff;
mod project_git_exec;
mod project_repo_paths;
mod project_terminal;
mod relay_members;
mod relay_reconnect;
mod social;
Expand Down Expand Up @@ -57,6 +62,9 @@ pub use pairing::*;
pub use personas::*;
pub use prevent_sleep::*;
pub use profile::*;
pub use project_git::*;
pub use project_git_diff::*;
pub use project_terminal::*;
pub use relay_members::*;
pub use relay_reconnect::*;
pub use social::*;
Expand Down
Loading
Loading