app
app copied to clipboard
Monitor movie collection
When adding a new movie, monitor entire collection.
This would work by adding:
struct Movie {
let addOptions: AddMovieOptions?
}
struct AddMovieOptions: Codable {
let monitor: "movieAndCollection" // movieOnly, movieAndCollection, none
let searchForMovie: Bool?
}
This is probably super low priority, but it'd be nice to view a movie's collection from the Details View as well.
This is probably super low priority, but it'd be nice to view a movie's collection from the Details View as well.
That would actually be great! Perhaps, it could be a section before or after the search buttons, like a carouseel with the collection... or something. That would be super useful as it would avoid one go to the web to monitor the remaining movies. Specially useful if you want to download some but not the entire collection.
@jerrellmardis @tillkruss
AddMovieOptions
@tillkruss That is an easy implementation. Juts by adding a picker for the monitor options and a toggle to search for movie. Lmk Wdyt?
Yep, just needs a picker and added to the request 👍