- 인라인 Permission 버튼 표시값을 정규화(Ask/Plan/Auto/Deny) 기반으로 표시 - 설정 창 기본 파일 접근 권한 힌트에 4단계 구조를 명시 - 검증: dotnet build 경고0 오류0, dotnet test 374/374 통과
This commit is contained in:
@@ -10407,7 +10407,7 @@ public partial class ChatWindow : Window
|
|||||||
BtnInlineFastMode.Content = $"Fast mode · {(llm.FreeTierMode ? "On" : "Off")}";
|
BtnInlineFastMode.Content = $"Fast mode · {(llm.FreeTierMode ? "On" : "Off")}";
|
||||||
BtnInlineReasoning.Content = $"Reasoning · {ReasoningLabel(llm.AgentDecisionLevel)}";
|
BtnInlineReasoning.Content = $"Reasoning · {ReasoningLabel(llm.AgentDecisionLevel)}";
|
||||||
BtnInlinePlanMode.Content = $"Plan mode · {PlanModeLabel(llm.PlanMode)}";
|
BtnInlinePlanMode.Content = $"Plan mode · {PlanModeLabel(llm.PlanMode)}";
|
||||||
BtnInlinePermission.Content = $"Permission · {llm.FilePermission}";
|
BtnInlinePermission.Content = $"Permission · {PermissionModeCatalog.NormalizeGlobalMode(llm.FilePermission)}";
|
||||||
BtnInlineSkill.Content = $"Skill system · {(llm.EnableSkillSystem ? "On" : "Off")}";
|
BtnInlineSkill.Content = $"Skill system · {(llm.EnableSkillSystem ? "On" : "Off")}";
|
||||||
BtnInlineCommandBrowser.Content = "명령/스킬 브라우저";
|
BtnInlineCommandBrowser.Content = "명령/스킬 브라우저";
|
||||||
|
|
||||||
|
|||||||
@@ -4340,7 +4340,7 @@
|
|||||||
<Grid>
|
<Grid>
|
||||||
<StackPanel HorizontalAlignment="Left">
|
<StackPanel HorizontalAlignment="Left">
|
||||||
<TextBlock Style="{StaticResource RowLabel}" Text="기본 파일 접근 권한"/>
|
<TextBlock Style="{StaticResource RowLabel}" Text="기본 파일 접근 권한"/>
|
||||||
<TextBlock Style="{StaticResource RowHint}" Text="Cowork/Code 탭 진입 시 자동 적용되는 권한입니다."/>
|
<TextBlock Style="{StaticResource RowHint}" Text="Cowork/Code 탭 진입 시 자동 적용됩니다. Ask / Plan / Auto / Deny 4단계 권한을 지원합니다."/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<ComboBox HorizontalAlignment="Right" VerticalAlignment="Center"
|
<ComboBox HorizontalAlignment="Right" VerticalAlignment="Center"
|
||||||
Width="160" SelectedValue="{Binding DefaultAgentPermission, Mode=TwoWay}"
|
Width="160" SelectedValue="{Binding DefaultAgentPermission, Mode=TwoWay}"
|
||||||
|
|||||||
Reference in New Issue
Block a user