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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [1.5.4]
9
+
10
+
### Added
11
+
- Minimal Due Text Mode: A new toggleable field mode that abbreviates "overdue" to "OD" and uses a fixed-width column for perfect task list alignment.
12
+
- Configuration for due field: Added `[list.fields.due] minimal = true` to `config.toml`.
13
+
- Settings Toggle: Added "Minimal Due Text" toggle to the settings menu (ctrl+s) for live configuration.
14
+
15
+
### Improved
16
+
- Task List Alignment: When minimal mode is enabled, the due column width is automatically calculated across all visible tasks to ensure consistent left-alignment.
Copy file name to clipboardExpand all lines: README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -218,6 +218,11 @@ right = ["tags", "due", "priority"]
218
218
Valid values for `right` are: `tags`, `due`, `priority`.
219
219
220
220
### Task Fields
221
+
***Minimal Due Mode**: Abbreviate "overdue" to "OD" and use a fixed-width column for consistent task list alignment. Enabled by default.
222
+
```toml
223
+
[list.fields.due]
224
+
minimal = true
225
+
```
221
226
* **wait_until**: Hide a task from the task list until the specified datetime. If the task is recurring, new instances are not generated/shown until `wait_until` has passed. Format: `yyyy-MM-dd HH:mm`.
222
227
* **until**: Stop generating new recurring instances after the specified datetime. Existing instances may remain visible. Format: `yyyy-MM-dd HH:mm`.
0 commit comments