런처 하단 위젯 기본값 비활성화
Some checks failed
Release Gate / gate (push) Has been cancelled

- 런처 하단 위젯 6종의 신규 기본값을 모두 꺼짐 상태로 변경함
- 성능, 포모도로, 메모, 날씨, 일정, 배터리 위젯이 새 설치와 초기화 시 기본 비노출로 시작하도록 조정함
- 기존 사용자 설정은 유지하고 AppSettings 기본값만 변경함
- 검증: dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify\\ -p:IntermediateOutputPath=obj\\verify\\ (경고 0 / 오류 0)
This commit is contained in:
2026-04-05 19:25:15 +09:00
parent 36828ba199
commit 28e88d615f
3 changed files with 10 additions and 6 deletions

View File

@@ -202,22 +202,22 @@ public class LauncherSettings
public bool ShowLauncherBorder { get; set; } = true;
[JsonPropertyName("showWidgetPerf")]
public bool ShowWidgetPerf { get; set; } = true;
public bool ShowWidgetPerf { get; set; } = false;
[JsonPropertyName("showWidgetPomo")]
public bool ShowWidgetPomo { get; set; } = true;
public bool ShowWidgetPomo { get; set; } = false;
[JsonPropertyName("showWidgetNote")]
public bool ShowWidgetNote { get; set; } = true;
public bool ShowWidgetNote { get; set; } = false;
[JsonPropertyName("showWidgetWeather")]
public bool ShowWidgetWeather { get; set; } = true;
public bool ShowWidgetWeather { get; set; } = false;
[JsonPropertyName("showWidgetCalendar")]
public bool ShowWidgetCalendar { get; set; } = true;
public bool ShowWidgetCalendar { get; set; } = false;
[JsonPropertyName("showWidgetBattery")]
public bool ShowWidgetBattery { get; set; } = true;
public bool ShowWidgetBattery { get; set; } = false;
/// <summary>단축키 헬프 창에서 아이콘 색상을 테마 AccentColor 기준으로 표시. 기본 true(테마색).</summary>
[JsonPropertyName("shortcutHelpUseThemeColor")]