From f359dee1946a1c4dd8480075e31d8750c0421bba Mon Sep 17 00:00:00 2001 From: Kharec Date: Tue, 16 Dec 2025 03:09:06 +0100 Subject: [PATCH] feat: add a "downloaded" column in the UI --- auditui/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auditui/constants.py b/auditui/constants.py index 16585a8..651301d 100644 --- a/auditui/constants.py +++ b/auditui/constants.py @@ -9,7 +9,7 @@ DEFAULT_CODEC = "LC_128_44100_stereo" MIN_FILE_SIZE = 1024 * 1024 DEFAULT_CHUNK_SIZE = 8192 -TABLE_COLUMNS = ("Title", "Author", "Length", "Progress") +TABLE_COLUMNS = ("Title", "Author", "Length", "Progress", "Downloaded") AUTHOR_NAME_MAX_LENGTH = 40 AUTHOR_NAME_DISPLAY_LENGTH = 37