Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion openless-all/app/src/pages/settings/CodingAgentSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ export function CodingAgentSection() {
}
}

if (os === 'win') return null
// Less Computer 仅 macOS 开放:后端只在 macOS 注册热键/创建窗口,
// Windows / Linux 不渲染配置入口,避免用户看到无法使用的功能。
if (os === 'win' || os === 'linux') return null

if (!prefs) {
return (
Expand Down
5 changes: 3 additions & 2 deletions openless-all/app/src/pages/settings/tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,9 @@ export function AdvancedTab() {

return (
<>
{showDesktopAdvanced && os !== 'win' && <CodingAgentSection />}
{showDesktopAdvanced && os !== 'win' && <ClaudeConsoleSection />}
{/* Less Computer / Claude 控制台仅 macOS 开放:后端只在 macOS 注册热键/创建窗口 */}
{showDesktopAdvanced && os === 'mac' && <CodingAgentSection />}
{showDesktopAdvanced && os === 'mac' && <ClaudeConsoleSection />}
<MultimodalPipelineSection />
{showDebugTools && <DebugToolsSection />}
</>
Expand Down
Loading