feat: Created a History tab in the Radarr UI and created a list history command and mark-history-item-as-failed command for Radarr

This commit is contained in:
2026-01-13 12:35:54 -07:00
parent 0172253d20
commit ad9e2b3671
52 changed files with 2265 additions and 84 deletions
@@ -26,7 +26,7 @@ mod tests {
fn test_system_tab_left(#[values(true, false)] is_ready: bool) {
let mut app = App::test_default();
app.is_loading = is_ready;
app.data.radarr_data.main_tabs.set_index(6);
app.data.radarr_data.main_tabs.set_index(7);
SystemHandler::new(
DEFAULT_KEYBINDINGS.left.key,
@@ -47,7 +47,7 @@ mod tests {
fn test_system_tab_right(#[values(true, false)] is_ready: bool) {
let mut app = App::test_default();
app.is_loading = is_ready;
app.data.radarr_data.main_tabs.set_index(6);
app.data.radarr_data.main_tabs.set_index(7);
SystemHandler::new(
DEFAULT_KEYBINDINGS.right.key,