Is your feature request related to a problem? Date format hardcoded in code. Users in different locales want different formats (MM/DD vs DD/MM, 12h vs 24h).
Describe the solution you would like: Add date_format config option:
- "2006-01-02 15:04" (ISO)
- "01/02/2006 3:04 PM" (US)
- "02/01/2006 15:04" (EU)
- Custom Go time format string
Describe alternatives you have considered: Hardcoded format (current). Config allows personalization.
Additional context:
- Files: config/config.go, tui/inbox.go
- Use time.Format() with config value
- Provide presets in settings UI
- Complexity: Easy - config option + formatting
Is your feature request related to a problem? Date format hardcoded in code. Users in different locales want different formats (MM/DD vs DD/MM, 12h vs 24h).
Describe the solution you would like: Add date_format config option:
Describe alternatives you have considered: Hardcoded format (current). Config allows personalization.
Additional context: