Phase 8 마무리: HistoryPage 날짜 그룹핑 + AppConfig 음성 모드 필드
- HistoryPage: 평면 리스트 → TODAY/YESTERDAY/날짜 그룹핑 (DashboardPage와 동일 패턴) - AppConfig: dictationEnabled, agentModeEnabled, handsFreeEnabled 필드 추가 - ConfigService: 기본값 설정 (dictation=true, agent=false, handsFree=false) - recording-tip: 에러 아이콘 색상 #D32F2F → #ef4444 (d3roPalette.tag.red)
This commit is contained in:
parent
28371a9d1a
commit
5741d55c0b
4 changed files with 98 additions and 41 deletions
|
|
@ -55,7 +55,10 @@ const CONFIG_DEFAULTS: AppConfig = {
|
|||
hotkeyEnabled: true,
|
||||
insertMethod: 'clipboard',
|
||||
autoInsert: true,
|
||||
maxHistoryEntries: 1000
|
||||
maxHistoryEntries: 1000,
|
||||
dictationEnabled: true,
|
||||
agentModeEnabled: false,
|
||||
handsFreeEnabled: false,
|
||||
}
|
||||
|
||||
let store: ElectronStore<AppConfig> | null = null
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue