From cab3d1d50d76351a1d6d88c10116e3c4a64c3ff0 Mon Sep 17 00:00:00 2001 From: Dark-Alex-17 Date: Tue, 8 Aug 2023 10:50:05 -0600 Subject: [PATCH] Updated README for what still needs to be done --- README.md | 8 ++++++-- src/models/mod.rs | 1 - src/models/radarr_models.rs | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 125c4cc..8e5c077 100644 --- a/README.md +++ b/README.md @@ -72,16 +72,20 @@ tautulli: ### Radarr -- [x] View your library, downloads, collections, or calendar +- [x] View your library, downloads, collections - [x] View details of a specific movie including description, history, downloaded file info, or the credits - [x] View details of any collection and the movies in them - [x] Search your library or collections - [x] Add or delete movies and downloads - [x] Trigger automatic searches for movies -- [x] Trigger refresh and disk scan for movies +- [x] Trigger refresh and disk scan for movies, downloads, and collections - [x] Manually search for movies - [ ] Edit movies - [ ] Manage your quality profiles +- [ ] Manage your quality definitions +- [ ] Manage your tags +- [ ] Manage your indexers +- [ ] Import existing library ### Sonarr - [ ] Support for Sonarr diff --git a/src/models/mod.rs b/src/models/mod.rs index 6372b63..39b9b74 100644 --- a/src/models/mod.rs +++ b/src/models/mod.rs @@ -17,7 +17,6 @@ pub enum Route { Whisparr, Bazarr, Prowlarr, - Overseerr, Tautulli, } diff --git a/src/models/radarr_models.rs b/src/models/radarr_models.rs index 887f3e3..b08e87f 100644 --- a/src/models/radarr_models.rs +++ b/src/models/radarr_models.rs @@ -2,7 +2,7 @@ use std::fmt::{Display, Formatter}; use chrono::{DateTime, Utc}; use derivative::Derivative; -use serde::{Deserialize, Deserializer, Serialize}; +use serde::{Deserialize, Serialize}; use serde_json::Number; use crate::models::HorizontallyScrollableText;