feat(releases): show details in list view (#1337)

* feat(releases): show details in list view

* fix(releases): activitytable columns type

* fix(releases): incognito mode

* feat(releases): move details button

* do we wanna truncate?

* fix(web): release column width at full size

---------

Co-authored-by: martylukyy <35452459+martylukyy@users.noreply.github.com>
This commit is contained in:
ze0s 2024-01-02 21:53:38 +01:00 committed by GitHub
parent 7eaf499d66
commit 9992675971
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 155 additions and 91 deletions

View file

@ -10,11 +10,27 @@ interface Release {
indexer: string;
filter: string;
protocol: string;
implementation: string;
name: string;
title: string;
size: number;
raw: string;
info_url: string;
download_url: string;
category: string;
group: string;
season: number;
episode: number;
year: number;
resolution: string;
codec: string;
source: string;
container: string;
hdr: string;
uploader: string;
origin: string;
// freeleech: boolean;
// freeleech_percent:number;
timestamp: Date
action_status: ReleaseActionStatus[]
}