You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## What?
Adds an `EnableDetailedDates` config option and a **General Settings**
toggle for showing detailed inbox dates. When enabled, inbox timestamps
render as absolute dates using the configured **Date Format** instead of
relative labels like “2 hours ago”.
## Why?
Closes#569
Some users prefer absolute dates in the inbox for clarity and
consistency. This enables that preference while keeping the existing
relative date behavior as the default.
---------
Co-authored-by: Andriy Chernov <andriy@floatpane.com>
Copy file name to clipboardExpand all lines: docs/docs/Configuration.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,8 @@ Configuration is stored in `~/.config/matcha/config.json`.
44
44
],
45
45
"theme": "Matcha",
46
46
"enable_split_pane": true,
47
+
"enable_detailed_dates": true,
48
+
"date_format": "DD/MM/YYYY HH:MM",
47
49
"disable_images": true,
48
50
"hide_tips": true,
49
51
"body_cache_threshold_mb": 100
@@ -54,6 +56,8 @@ Configuration is stored in `~/.config/matcha/config.json`.
54
56
55
57
`enable_split_pane` enables a side-by-side view where the email list and the selected email are shown on the same screen.
56
58
59
+
`enable_detailed_dates` shows absolute inbox dates using your configured `date_format` instead of relative labels like "2 hours ago".
60
+
57
61
`body_cache_threshold_mb` sets the maximum size (in megabytes) for the local email body cache. When this limit is reached, least recently accessed cached emails are evicted across all folders to make room for new ones. Defaults to `100` MB if not specified.
0 commit comments