forked from pingdotgg/t3code
-
Notifications
You must be signed in to change notification settings - Fork 3
Unify compact subheaders and diff file navigation #113
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
aaditagrawal
merged 26 commits into
main
from
sync/upstream-20260616-right-panel-search-relay
Jun 24, 2026
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
c2d44a3
Unify compact subheaders and diff file navigation
juliusmarminge 9d5e632
Tighten workspace control spacing in the header
juliusmarminge 71ea5fa
Show disabled reasons for unavailable right panel surfaces (#3093)
juliusmarminge d0a7d18
[codex] Fix first browser annotation capture (#3095)
t3dotgg d12da19
Use `fff` for workspace search queries (#3099)
juliusmarminge 5cd2744
[codex] Fix terminal line height for QR readability (#3096)
StiensWout 708d538
[codex] Trace first-party relay clients (#2995)
juliusmarminge 85fe62d
Stage fff native binaries in desktop builds (#3109)
juliusmarminge 689a882
[codex] Add native mobile composer and markdown (#3101)
juliusmarminge 8f9911f
Add DELETE-based MCP session termination (#3113)
juliusmarminge a5efb7c
Parallelize VCS status refresh and status reads (#3112)
juliusmarminge 4b73827
fix(settings): disable auto-open of task sidebar by default (#2421)
jappyjan 60b546c
Double-click a sidebar thread row to rename (#3064)
TheIcarusWings 6602757
sync: merge upstream right panel search relay layer
7bbd621
Fix preview CI checks
80e6106
Fix provider diagnostics checks
d8df4fe
Merge branch 'sync/upstream-20260615-file-browser' into sync/upstream…
3107e8f
Fix provider session directory test imports
11a6286
Merge branch 'sync/upstream-20260615-file-browser' into sync/upstream…
f6bcc1c
Merge branch 'sync/upstream-20260615-file-browser' into sync/upstream…
4a34d31
Merge branch 'sync/upstream-20260615-file-browser' into sync/upstream…
8612c20
Stabilize provider registry reprobe test
f5ba4f6
Merge branch 'sync/upstream-20260615-file-browser' into sync/upstream…
f448878
Stabilize provider registry reprobe test
0abf592
Merge branch 'sync/upstream-20260615-file-browser' into sync/upstream…
a38a422
Merge branch 'sync/upstream-20260615-file-browser' into sync/upstream…
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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| The MIT License (MIT) | ||
|
|
||
| Copyright (c) 2015-present 650 Industries, Inc. (aka Expo) | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in all | ||
| copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| SOFTWARE. |
6 changes: 6 additions & 0 deletions
6
apps/mobile/modules/t3-composer-editor/expo-module.config.json
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "platforms": ["apple"], | ||
| "apple": { | ||
| "modules": ["T3ComposerEditorModule"] | ||
| } | ||
| } | ||
21 changes: 21 additions & 0 deletions
21
apps/mobile/modules/t3-composer-editor/ios/T3ComposerEditor.podspec
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| Pod::Spec.new do |s| | ||
| s.name = 'T3ComposerEditor' | ||
| s.version = '1.0.0' | ||
| s.summary = 'Native attributed composer editor for T3 Code mobile.' | ||
| s.description = 'UIKit-backed rich text composer with atomic skill and file tokens.' | ||
| s.author = 'T3 Tools' | ||
| s.homepage = 'https://t3tools.com' | ||
| s.platforms = { | ||
| :ios => '16.4', | ||
| } | ||
| s.source = { :path => '.' } | ||
| s.static_framework = true | ||
|
|
||
| s.dependency 'ExpoModulesCore' | ||
| # Swift/Objective-C compatibility | ||
| s.pod_target_xcconfig = { | ||
| 'DEFINES_MODULE' => 'YES', | ||
| } | ||
|
|
||
| s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}" | ||
| end |
71 changes: 71 additions & 0 deletions
71
apps/mobile/modules/t3-composer-editor/ios/T3ComposerEditorModule.swift
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| import ExpoModulesCore | ||
|
|
||
| public class T3ComposerEditorModule: Module { | ||
| public func definition() -> ModuleDefinition { | ||
| Name("T3ComposerEditor") | ||
|
|
||
| View(T3ComposerEditorView.self) { | ||
| Prop("value") { (view: T3ComposerEditorView, value: String) in | ||
| view.setValue(value) | ||
| } | ||
| Prop("tokensJson") { (view: T3ComposerEditorView, tokensJson: String) in | ||
| view.setTokensJson(tokensJson) | ||
| } | ||
| Prop("selectionJson") { (view: T3ComposerEditorView, selectionJson: String) in | ||
| view.setSelectionJson(selectionJson) | ||
| } | ||
| Prop("themeJson") { (view: T3ComposerEditorView, themeJson: String) in | ||
| view.setThemeJson(themeJson) | ||
| } | ||
| Prop("placeholder") { (view: T3ComposerEditorView, placeholder: String) in | ||
| view.setPlaceholder(placeholder) | ||
| } | ||
| Prop("fontFamily") { (view: T3ComposerEditorView, fontFamily: String) in | ||
| view.setFontFamily(fontFamily) | ||
| } | ||
| Prop("fontSize") { (view: T3ComposerEditorView, fontSize: Double) in | ||
| view.setFontSize(CGFloat(fontSize)) | ||
| } | ||
| Prop("lineHeight") { (view: T3ComposerEditorView, lineHeight: Double) in | ||
| view.setLineHeight(CGFloat(lineHeight)) | ||
| } | ||
| Prop("contentInsetVertical") { (view: T3ComposerEditorView, contentInsetVertical: Double) in | ||
| view.setContentInsetVertical(CGFloat(contentInsetVertical)) | ||
| } | ||
| Prop("editable") { (view: T3ComposerEditorView, editable: Bool) in | ||
| view.setEditable(editable) | ||
| } | ||
| Prop("scrollEnabled") { (view: T3ComposerEditorView, scrollEnabled: Bool) in | ||
| view.setScrollEnabled(scrollEnabled) | ||
| } | ||
| Prop("autoFocus") { (view: T3ComposerEditorView, autoFocus: Bool) in | ||
| view.setAutoFocus(autoFocus) | ||
| } | ||
| Prop("autoCorrect") { (view: T3ComposerEditorView, autoCorrect: Bool) in | ||
| view.setAutoCorrect(autoCorrect) | ||
| } | ||
| Prop("spellCheck") { (view: T3ComposerEditorView, spellCheck: Bool) in | ||
| view.setSpellCheck(spellCheck) | ||
| } | ||
|
|
||
| Events( | ||
| "onComposerChange", | ||
| "onComposerSelectionChange", | ||
| "onComposerFocus", | ||
| "onComposerBlur", | ||
| "onComposerPasteImages", | ||
| "onComposerContentSizeChange" | ||
| ) | ||
|
|
||
| AsyncFunction("focus") { (view: T3ComposerEditorView) in | ||
| view.focusEditor() | ||
| } | ||
| AsyncFunction("blur") { (view: T3ComposerEditorView) in | ||
| view.blurEditor() | ||
| } | ||
| AsyncFunction("setSelection") { (view: T3ComposerEditorView, start: Int, end: Int) in | ||
| view.setSelection(start: start, end: end) | ||
| } | ||
| } | ||
| } | ||
| } |
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.
This new local Expo module is consumed by the iOS composer via
requireNativeView("T3ComposerEditor"), but the module directory only addsexpo-module.config.json/podspec files and nopackage.jsonmetadata. Expo autolinking expects the module config to live next to a package manifest, so iOS prebuild will not discover/registerT3ComposerEditorModule; mounting the composer will then fail with a missing native view. Add the local module package metadata (and app dependency/podspec path as needed) so it is autolinked.Useful? React with 👍 / 👎.