Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
68 commits
Select commit Hold shift + click to select a range
4daab87
Merge tag '0.29.0' into develop
intitni Jan 9, 2024
2f97bd4
Update SwiftSyntax to 509.0.2
intitni Jan 9, 2024
66c5151
Merge branch 'feature/update-swift-syntax-version' into develop
intitni Jan 9, 2024
c23d06f
Update
intitni Jan 9, 2024
0540c2b
Update
intitni Jan 9, 2024
3bbaf83
Update to only use closure and case as focused range when it's more t…
intitni Jan 9, 2024
1a4d5b1
Move command trigger to XcodeInspector
intitni Jan 9, 2024
5d6bd73
Remove unused content from Environment.swift
intitni Jan 9, 2024
a377916
Fix unit tests
intitni Jan 9, 2024
59418d2
Remove Environment.swift and it's package
intitni Jan 9, 2024
d0e905d
Remove useless imports of Environment
intitni Jan 9, 2024
d8065c3
Move NoAccessToAccessibilityAPIError to XPCService.swift
intitni Jan 9, 2024
ea98260
Move now to Workspace
intitni Jan 9, 2024
d36a861
Make the extensions public
intitni Jan 9, 2024
7393c89
Fix incorrect variable call
intitni Jan 9, 2024
fbf5644
Use XcodeInspector to get urls instead of Environment
intitni Jan 9, 2024
837c2da
Change currentDirectoryPath to currentDirectoryURL
intitni Jan 9, 2024
dd95c9a
Merge branch 'feature/remove-environment-dot-swift' into develop
intitni Jan 9, 2024
012b4f9
Make activateXcode optional
intitni Jan 11, 2024
29737d4
Merge branch 'feature/copilot-for-xcode-kit-update-240109' into develop
intitni Jan 11, 2024
815ac67
Merge tag '0.29.1' into develop
intitni Jan 15, 2024
e73363f
Update TextSplitter to generate TextChunk
intitni Jan 14, 2024
bbf2bd2
Support creating CodeLanguage with file path
intitni Jan 14, 2024
31a12e9
Update get code function
intitni Jan 15, 2024
7985d0a
Update
intitni Jan 15, 2024
ee31bb1
Update
intitni Jan 16, 2024
dd81d17
Merge branch 'feature/integrating-keyword-base-retrieval' into develop
intitni Jan 16, 2024
c2d0fa2
Update
intitni Jan 16, 2024
7eebdb8
Supports esc to dismiss suggestion
intitni Jan 16, 2024
27c576e
Change the close button in compact suggestion panel to dismiss instea…
intitni Jan 16, 2024
b47de8f
Add a toggle for dismiss suggestion with ESC
intitni Jan 16, 2024
57f2577
Update
intitni Jan 16, 2024
ffd258c
Merge branch 'feature/esc-to-dismiss-suggestion' into develop
intitni Jan 16, 2024
2541553
Add normal title bar to chat window
intitni Jan 16, 2024
1c81ab1
Add attach button to title bar
intitni Jan 16, 2024
a875b92
Merge branch 'feature/chat-panel-with-normal-title-bar' into develop
intitni Jan 16, 2024
56151df
Fix mouse events in hidden chat window
intitni Jan 16, 2024
7cab434
Adjust style of chat window
intitni Jan 17, 2024
c364703
Move detach/attach button to the right side
intitni Jan 17, 2024
0920414
Fix the conflicts between fullscreen and attach
intitni Jan 17, 2024
1100db9
Fix reattaching animation
intitni Jan 17, 2024
c85654a
Support exporting custom commands
intitni Jan 17, 2024
974bba1
Merge branch 'feature/export-import-custom-command' into develop
intitni Jan 17, 2024
5d6b7e3
Update
intitni Jan 17, 2024
1a26846
Add accessibility API status to menu item
intitni Jan 17, 2024
4ad3387
Update
intitni Jan 17, 2024
8433e9b
Update
intitni Jan 20, 2024
d189798
Add merged() to TextChunk
intitni Jan 21, 2024
1f1fac1
Update tests
intitni Jan 21, 2024
854b611
Adjust prompt for retrieved content
intitni Jan 21, 2024
861e462
Update
intitni Jan 21, 2024
69442b5
Move prompt reformat to ChatGPTService
intitni Jan 21, 2024
20f5de9
Update tests
intitni Jan 21, 2024
70ceefc
Add tests for prompt reformat for Google Gemini
intitni Jan 21, 2024
a3aff20
Merge branch 'feature/fix-gemini-as-utility-model' into develop
intitni Jan 21, 2024
cf7535c
Split XcodeInspector.swift into multiple files
intitni Jan 21, 2024
c909e08
Update
intitni Jan 21, 2024
4d6e690
Add restart method to XcodeInspector
intitni Jan 21, 2024
7b18d0f
Make appElement a computed property
intitni Jan 21, 2024
0c56c85
Restart observations when XcodeInspector restarts
intitni Jan 21, 2024
28ead25
Update
intitni Jan 21, 2024
1aa0803
Add Active Source Editor to menu bar app
intitni Jan 21, 2024
0a2d371
Bump version 0.30.0
intitni Jan 21, 2024
910a84b
Fix retrieved content number in rag when context window is not big en…
intitni Jan 21, 2024
6706199
Add tests
intitni Jan 21, 2024
d339f97
Add more information to Xcode Inspector debug menu
intitni Jan 22, 2024
1ad6a58
Update appcast.xml
intitni Jan 22, 2024
381005f
Merge branch 'release/0.30.0'
intitni Jan 22, 2024
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
Prev Previous commit
Next Next commit
Fix reattaching animation
  • Loading branch information
intitni committed Jan 17, 2024
commit 1100db904d7637972e2ffd4e6cebed98daf73f4c
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,14 @@ public struct ChatPanelFeature: ReducerProtocol {
return .none

case .toggleChatPanelDetachedButtonClicked:
if state.chatPanelInASeparateWindow {
if state.isFullScreen, state.chatPanelInASeparateWindow {
return .run { send in
await send(.attachChatPanel)
}
} else {
return .run { send in
await send(.detachChatPanel)
}
}

state.chatPanelInASeparateWindow.toggle()
return .none

case .detachChatPanel:
state.chatPanelInASeparateWindow = true
Expand Down