From 3bbe1e8424f258a3611c39409d4f8a5d65cd7ae2 Mon Sep 17 00:00:00 2001 From: CyCl0ne Date: Sun, 8 Mar 2026 14:56:16 +0100 Subject: [PATCH] Add "Downloaded" timestamp column to completed downloads list Display the completion time for each download in the done list. The backend already stores a nanosecond timestamp on DownloadInfo; this wires it up to the frontend using Angular's DatePipe. --- ui/src/app/app.html | 7 +++++++ ui/src/app/app.ts | 3 ++- ui/src/app/interfaces/download.ts | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ui/src/app/app.html b/ui/src/app/app.html index 6504932..202ee80 100644 --- a/ui/src/app/app.html +++ b/ui/src/app/app.html @@ -490,6 +490,7 @@ Video File Size + Downloaded @@ -556,6 +557,11 @@ {{ entry[1].size | fileSize }} } + + @if (entry[1].timestamp) { + {{ entry[1].timestamp / 1000000 | date:'yyyy-MM-dd HH:mm' }} + } +
@if (entry[1].status === 'error') { @@ -585,6 +591,7 @@ {{ chapterFile.size | fileSize }} } +