Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
233516d
Bump GitHub Copilot language server to 1.48.0
intitni May 8, 2025
415088e
Add model settings for GitHub Copilot but looks like it's not yet imp…
intitni May 8, 2025
519cce1
Stop handling multiple selections in modification
intitni May 8, 2025
87cae85
Support disabling chat panel always on top
intitni May 8, 2025
2bb0a70
Do not hide modification panel, instead change the level
intitni May 8, 2025
a8d2710
Adjust chat panel level behavior
intitni May 8, 2025
380cffc
Fix open chat
intitni May 8, 2025
38fcd66
Hide chat panel by default
intitni May 8, 2025
3bb2629
Support destroying workspacePool from menu
intitni May 8, 2025
9340275
Fix command injection
intitni May 8, 2025
2822025
Revert chat window behavior
intitni May 8, 2025
e8df300
Bump version
intitni May 8, 2025
2398a9c
Update modification panel to show all modifications
intitni May 8, 2025
cc6ed15
Jump to new modification when started
intitni May 8, 2025
297076d
Move to the target file before accepting a modification
intitni May 8, 2025
a08e1bc
Tweak modification panel behavior
intitni May 9, 2025
3b78254
Update model list
intitni May 9, 2025
6acaf19
Cherry pick accept first line of suggestion
intitni May 9, 2025
2c394e3
Fix modification panel not dismissing after accept
intitni May 9, 2025
f13b82d
Drop GitHub Copilot language server to 1.44.0
intitni May 9, 2025
bd03440
Update
intitni May 9, 2025
f7863d9
Bump Codeium language server
intitni May 9, 2025
a00642a
Bump GitHub Copilot language server
intitni May 9, 2025
8b12291
Update
intitni May 9, 2025
3905f1a
Adjust always on top behavior
intitni May 9, 2025
58727f6
Update default settings
intitni May 9, 2025
82307fe
Fix window level
intitni May 9, 2025
ca0bd7a
Merge branch 'hotfix/0.35.8'
intitni May 9, 2025
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
Hide chat panel by default
  • Loading branch information
intitni committed May 8, 2025
commit 38fcd66afb7f8dec07f3ffd2191cb3f46f9ec43d
4 changes: 4 additions & 0 deletions Core/Sources/SuggestionWidget/WidgetWindowsController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ actor WidgetWindowsController: NSObject {
}
}
}

Task { @MainActor in
windows.chatPanelWindow.isPanelDisplayed = false
}
}
}

Expand Down