Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
b21bc83
Fix home tab overflow
wesbillman May 27, 2026
5ecc01e
Show home inbox update type labels
wesbillman May 27, 2026
86e8475
Restyle Pulse tab bar
wesbillman May 27, 2026
bfdc7e8
Add global Everyone feed
wesbillman May 27, 2026
2d161f8
Wire Pulse note actions
wesbillman May 27, 2026
8e8ceff
Address Pulse review follow-ups
wesbillman May 27, 2026
09277ad
Refactor Pulse note actions
wesbillman May 27, 2026
051abd9
Treat missing contact list as empty
wesbillman May 28, 2026
f614136
Add tooltips to Pulse note action buttons
wesbillman May 28, 2026
6612fed
Preserve Pulse note tags
wesbillman May 28, 2026
a70fc45
Show Pulse reply context
wesbillman May 28, 2026
59a4bdc
Add Pulse reaction summaries
wesbillman May 28, 2026
e2c6154
Hydrate Pulse reaction state
wesbillman May 28, 2026
2b32814
Render Pulse likes as hearts
wesbillman May 28, 2026
e79ac95
Fix Pulse reaction active state
wesbillman May 28, 2026
e54dc7f
Refactor Pulse note state edges
wesbillman May 28, 2026
fa8bd75
Use primary color for active Pulse action state
wesbillman May 28, 2026
96d9f71
Style Pulse follow controls as buttons
wesbillman May 28, 2026
616a66b
Resolve Pulse reply parent profiles
wesbillman May 28, 2026
c857f2a
Open Pulse author profiles from notes
wesbillman May 28, 2026
46b0d82
Add Pulse profile side panel
wesbillman May 28, 2026
22830f7
Exclude own notes from Following feed
wesbillman May 28, 2026
b285024
Restore Pulse composer self profile
wesbillman May 28, 2026
369e168
Wire Pulse profile direct messages
wesbillman May 28, 2026
6233887
Include managed agents in Pulse agents tab
wesbillman May 28, 2026
eeb1c3b
Move follow controls to profiles
wesbillman May 28, 2026
a48640d
Add Pulse liked notes tab
wesbillman May 28, 2026
98aa5b0
Fix liked feed freshness
wesbillman May 28, 2026
fe2e13f
Share Pulse reaction tag helpers
wesbillman May 28, 2026
7d5fba0
Handle root-only Pulse replies
wesbillman May 28, 2026
e970434
Cap Pulse note id inputs
wesbillman May 28, 2026
4179cf0
Add Pulse helper tests
wesbillman May 28, 2026
873e512
Wire desktop helper tests
wesbillman May 28, 2026
a50dc88
Wire desktop Tauri tests
wesbillman May 28, 2026
cb05240
Fix Pulse followed agent visibility
wesbillman May 28, 2026
d0e76af
Remove Pulse agent filter and fix tab spacing
wesbillman May 28, 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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ jobs:
key: playwright-${{ runner.os }}-${{ steps.pw-version.outputs.version }}
- name: Desktop lint and format
run: just desktop-check
- name: Desktop unit tests
run: just desktop-test
- name: Desktop build
run: just desktop-build
- name: Desktop smoke e2e
Expand All @@ -172,6 +174,10 @@ jobs:
run: just desktop-tauri-check
env:
CMAKE_POLICY_VERSION_MINIMUM: "3.5"
- name: Desktop Tauri tests
run: just desktop-tauri-test
env:
CMAKE_POLICY_VERSION_MINIMUM: "3.5"
- name: Upload desktop e2e artifacts
if: failure()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
Expand Down
1 change: 1 addition & 0 deletions desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"lint": "biome lint .",
"check": "biome check . && pnpm check:file-sizes",
"format": "biome format --write .",
"test": "node --test 'src/**/*.test.mjs'",
"preview": "vite preview",
"tauri": "tauri",
"test:e2e": "pnpm build && playwright test",
Expand Down
Loading