feat(ui): Sonarr support for the series details popup

This commit is contained in:
2024-12-06 20:30:26 -07:00
parent 73d666d1f5
commit 23b1ca4371
39 changed files with 3075 additions and 956 deletions
+5
View File
@@ -14,6 +14,7 @@ where
#[allow(clippy::new_ret_no_self)]
fn new() -> T;
fn awaiting_import(self) -> T;
fn indeterminate(self) -> T;
fn default(self) -> T;
fn downloaded(self) -> T;
fn downloading(self) -> T;
@@ -44,6 +45,10 @@ where
self.fg(COLOR_ORANGE)
}
fn indeterminate(self) -> T {
self.fg(COLOR_ORANGE)
}
fn default(self) -> T {
self.white()
}