forked from pingdotgg/t3code
-
Notifications
You must be signed in to change notification settings - Fork 4
sync: port upstream provider/orchestration foundations (#3740–#4168) #181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
34df703
fix(server): resolve Claude SDK executable path on Windows npm instal…
nsxdavid 45bf60a
Fix project action preview settings persistence (#3842)
keeperxy ff710c9
fix(desktop): allow clipboard writes in the preview browser (#3889)
carlosricojr 8eb8a09
fix(web): handle sidebar shortcut before editors (#3921)
Bortlesboat 3379cb1
fix(server): recognize Bedrock-backed Claude as authenticated (#3931)
PieterVanZyl-Dev 4bd7b25
Fix incorrect pluralization of “entry” (#3933)
McMelonTV be210b2
feat(server): title background-task work-log rows with the task name …
t3dotgg 055994c
fix: delegate OpenCode session titles to provider (#3720)
tris203 1fb47be
Archive selected threads from the context menu (#3895)
theduke 8154092
fix(cli): support force removing projects (#3922)
Bortlesboat 10bd35c
fix: allow sidebar to be shrunk when wider than viewport (#2456)
shoaib050326 d240943
fix(codex): show web search query and url in tool call details (#2093)
GuilhermeVieiraDev be0cd8d
Add Codex launch arguments setting (#2892)
jamesx0416 8d1edc4
[orchestration] Clear stale active turn when session becomes inactive…
Andrew-Forster 1809642
Regenerate Codex reset credit protocol bindings (#4173)
juliusmarminge 8c5acb3
fix(preview): preserve direct localhost navigation (#3939)
Chrrxs 022d5af
Synchronize mobile threads with authoritative shell snapshots (#4163)
juliusmarminge d6ce25c
Gate iOS glass layout on native support (#4032)
juliusmarminge aa52d1f
fix(opencode): resume the OpenCode session on follow-ups instead of s…
vdmkotai e6078ed
fix(server): use CLI for OpenCode health check instead of spawning se…
UtkarshUsername f8eed09
fix(web): scope timeline minimap hover target to the side gutter (#3869)
xxashxx-svg a1220c1
[codex] show complete approval details (#4111)
maxwellyoung e519921
fix(web): paint text selection over composer chips (#4139)
yordis 8ef7721
[codex] preserve custom model slugs (#4168)
maxwellyoung fdc38a7
fix(server): adapt fork providers to providerModelsFromSettings witho…
cursoragent b600a5c
fix(sync): format CursorSdkMappings and align timeline MVCP size test
cursoragent 1cf751c
fix(sync): restore fork Cursor SDK + Claude provider after #4168
cursoragent 3ec88c4
fix(sync): drop obsolete provider kind from custom model slug helper
cursoragent ea96008
fix(sync): drop provider kind from Claude providerModelsFromSettings …
cursoragent 21a8fe4
fix(server): subscribe to domain events before forking live buffers
cursoragent 04a9536
test(server): stub subscribeDomainEvents in shell buffer regression
cursoragent File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Preserve safe-area insets on iOS without Liquid Glass.
When
NATIVE_LIQUID_GLASS_SUPPORTEDis false on an iOS device, Line 425 still suppressesHomeTopContentSpacer, but these changes also disable automatic content inset adjustment and remove empty-state top padding. Older or unsupported iOS devices can therefore render content beneath the native header. Keep the existing iOS inset behavior for the solid-header fallback, or add an equivalent fallback spacer/inset path.Also applies to: 473-474
🤖 Prompt for AI Agents