Skip to content

Releases: josephschmitt/alexa-libby

Set quality profile and add Alexa card with artwork

02 Jul 04:18
Compare
Choose a tag to compare

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

30 Jun 15:57
Compare
Choose a tag to compare
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

28 Jun 22:25
Compare
Choose a tag to compare

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

28 Jun 02:05
Compare
Choose a tag to compare

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

28 Jun 00:48
Compare
Choose a tag to compare
Add imdb field back in for Couch Potato.

It's necessary for adding a movie.

Fix Couch Potato response parsing

28 Jun 00:24
Compare
Choose a tag to compare

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

27 Jun 01:57
Compare
Choose a tag to compare
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

25 Jun 21:18
Compare
Choose a tag to compare
v1.1.2

Add sample configs to show what different setups look like.

Fix error looking up qualities in Sonarr and Radarr.

25 Jun 03:12
Compare
Choose a tag to compare

Also add lots more tests, which caught some more bugs.

Add Sonarr and Radarr support

25 Jun 00:05
Compare
Choose a tag to compare
v1.1.0

Bump version to 1.1.0 for adding Sonarr and Radarr support.