From 0929778ca7a224c48bee58b66324cade4219cc43 Mon Sep 17 00:00:00 2001 From: lacvet Date: Sun, 5 Apr 2026 00:49:03 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8A=B8=EB=A0=88=EC=9D=B4=20=EB=A9=94?= =?UTF-8?q?=EB=89=B4=20=EB=B2=84=EC=A0=84=20=ED=97=A4=EB=8D=94=20=EA=B8=80?= =?UTF-8?q?=EC=9E=90=EC=83=89=EC=9D=84=20=EC=A7=84=ED=95=9C=20=ED=9A=8C?= =?UTF-8?q?=EC=83=89=EC=9C=BC=EB=A1=9C=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 변경 목적: 트레이 아이콘 우클릭 메뉴 최상단의 앱 이름/버전 표시가 본문 항목보다 덜 튀면서도 더 안정적으로 보이도록 시각 대비를 조정했습니다. 핵심 수정사항: TrayMenuWindow의 AddHeader 텍스트에 헤더 전용 진한 회색 브러시를 적용하고, README와 DEVELOPMENT 문서에 작업 이력과 검증 결과를 반영했습니다. 검증 결과: dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify\\ -p:IntermediateOutputPath=obj\\verify\\ 실행 기준 경고 0개, 오류 0개를 확인했습니다. --- README.md | 4 ++++ docs/DEVELOPMENT.md | 2 ++ src/AxCopilot/Views/TrayMenuWindow.xaml.cs | 3 ++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 012a878..109333f 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ Windows 전용 시맨틱 런처 & 워크스페이스 매니저 `docs/claw-code-parity-plan.md` +- 업데이트: 2026-04-05 00:46 (KST) +- 트레이 아이콘 우클릭 메뉴 맨 위의 앱 이름/버전 헤더 글자색을 진한 회색으로 조정해, 본문 메뉴 항목보다 덜 튀면서도 더 또렷하게 보이도록 정리했습니다. +- 검증: `dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify\\ -p:IntermediateOutputPath=obj\\verify\\` 경고 0 / 오류 0 + - 업데이트: 2026-04-05 00:52 (KST) - 하단 composer 상태줄의 표시 문구를 더 통일해 `서비스 ... · 모델 ...`, `데이터 ...`, `브랜치 ...`처럼 같은 문법으로 읽히도록 정리했습니다. - 데이터 활용/권한 칩은 현재 상태 색에 맞는 테두리와 툴팁 설명을 같이 보여줘 상태 인지가 더 쉬워졌습니다. diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md index 9f07284..c612f9a 100644 --- a/docs/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -66,6 +66,8 @@ --- +- Document update: 2026-04-05 00:46 (KST) - Changed the tray icon context menu header text (the top app name/version row) to a darker gray so it reads as a quieter version label while staying more legible against the menu surface. + ## 愿€??臾몄꽌 | 臾몄꽌 | ?ㅻ챸 | diff --git a/src/AxCopilot/Views/TrayMenuWindow.xaml.cs b/src/AxCopilot/Views/TrayMenuWindow.xaml.cs index af93ed7..ac201ab 100644 --- a/src/AxCopilot/Views/TrayMenuWindow.xaml.cs +++ b/src/AxCopilot/Views/TrayMenuWindow.xaml.cs @@ -14,6 +14,7 @@ namespace AxCopilot.Views; public partial class TrayMenuWindow : Window { private System.Windows.Threading.DispatcherTimer? _autoCloseTimer; + private static readonly Brush HeaderTextBrush = new SolidColorBrush(Color.FromRgb(96, 96, 96)); public TrayMenuWindow() { @@ -50,7 +51,7 @@ public partial class TrayMenuWindow : Window FontWeight = FontWeights.SemiBold, Margin = new Thickness(12, 2, 12, 6), }; - label.SetResourceReference(TextBlock.ForegroundProperty, "SecondaryText"); + label.Foreground = HeaderTextBrush; MenuPanel.Children.Add(label); AddSeparator(); return this;