Releases: josephschmitt/alexa-libby
Set quality profile and add Alexa card with artwork
Two major feature additions:
New config option for choosing a quality profile
You can now optionally supply a key called "quality" for each provider that matches the quality you want the media to download at. Note that the name of the quality has to match exactly what it's called in Sonarr or Radarr for it to work. Example:
"server": {...}
"movies": {
"provider": "radarr",
"server": {...},
"quality": "HD-1080p"
},
"shows": {
"provider": "sonarr",
"server": {...},
"quality": "HDTV-1080p"
}
If you don't set a quality, it'll use whatever the first quality profile from the API is, usually "Any".
Support for displaying cards in the Alexa app
This requires providing an API key for TMDB, which is where we get the artwork from. You can do so in the config in the new artwork
section:
"server": {...},
"movies": {...},
"shows": {...},
"artwork": {
"tmdbApiKey": "abcdefghijklmnopqrstuvwxyz123456"
}
Once configured correctly, a card will be displayed for Movies and Shows in the Alexa app (or in the Echo Show if you have one) after checking if a movie or show is already on your list, or after adding a new movie or show.
Automatically search for new movies added to Radarr
Search for movie when adding to Radarr list (#8) * Fix for josephschmitt/alexa-libby#7 * Bump version to 1.1.8
Require media type before a media title
The utterances now require you to add "movie/film" or "show/series" before requesting a media item. This is so that Alexa avoids confusion as to what media type you were requesting, since this skill can handle both movies and shows.
This closes #2.
Update interaction model to fix some bugs
Should fix issues with not recognizing movies vs shows, and keeping the word "the" and "the movie" in the slot.
Fix missing imdb field for Couch Potato
Add imdb field back in for Couch Potato. It's necessary for adding a movie.
Fix Couch Potato response parsing
Also adds some protection around the provider names, and a more helpful error message.
Fix js error when couch potato returns no movies in response
v1.1.3 Fix js error when couch potato returns no movies in response.
Fix error when adding movies and shows via radarr and sonarr
v1.1.2 Add sample configs to show what different setups look like.
Fix error looking up qualities in Sonarr and Radarr.
Also add lots more tests, which caught some more bugs.
Add Sonarr and Radarr support
v1.1.0 Bump version to 1.1.0 for adding Sonarr and Radarr support.