@ -110,6 +110,9 @@ Depending on the `type` of dynamic collection, `data` is used to specify the opt
| [`trakt_liked_lists`](#trakt-liked-lists) | Create a collection for each list the authenticated trakt user likes | ❌ | ✅ | ✅ | ❌ | ❌ |
| [`trakt_people_list`](#trakt-people-lists) | Create a collection for each actor found in the trakt list | ✅ | ✅ | ✅ | ❌ | ❌ |
| [`actor`](#actor) | Create a collection for each actor found in the library | ✅ | ✅ | ✅ | ❌ | ❌ |
| [`director`](#director) | Create a collection for each director found in the library | ✅ | ✅ | ❌ | ❌ | ❌ |
| [`writer`](#writer) | Create a collection for each writer found in the library | ✅ | ✅ | ❌ | ❌ | ❌ |
| [`producer`](#producer) | Create a collection for each producer found in the library | ✅ | ✅ | ❌ | ❌ | ❌ |
| [`genre`](#genre) | Create a collection for each genre found in the library | ❌ | ✅ | ✅ | ✅ | ✅ |
| [`year`](#year) | Create a collection for each year found in the library | ❌ | ✅ | ✅ | ❌ | ❌ |
| [`decade`](#decade) | Create a collection for each decade found in the library | ❌ | ✅ | ❌ | ❌ | ❌ |
@ -434,17 +437,17 @@ Create a collection for each actor found in the library.
<th>Description & Values</th>
</tr>
<tr>
<td><code>actor_depth</code></td>
<td><code>depth</code></td>
<td><strong>Values:</strong> Number greater then 0</td>
<td><strong>Default:</strong> 3</td>
</tr>
<tr>
<td><code>actor_minimum</code></td>
<td><code>minimum</code></td>
<td><strong>Values:</strong> Number greater then 0</td>
<td><strong>Default:</strong> 3</td>
</tr>
<tr>
<td><code>number_of_actors</code></td>
<td><code>limit</code></td>
<td><strong>Values:</strong> Number greater then 0</td>
<td><strong>Default:</strong> None</td>
</tr>
@ -479,9 +482,210 @@ default_template:
</tr>
</table>
* `actor_depth` determines how many top billed actor per item they are in. (i.e. if they play a cameo role, this is unlikely to be counted)
* `actor_minimum` determines the minimum number of times the actor must appear within `actor_depth` for the collection to be created.
* `number_of_actors` determines the number of actor collection to max out at. (i.e. if to make collections for the top 25 actors)
* `depth` determines how many top billed actor per item they are in. (i.e. if they play a cameo role, this is unlikely to be counted)
* `minimum` determines the minimum number of times the actor must appear within `depth` for the collection to be created.
* `limit` determines the number of actor collection to max out at. (i.e. if to make collections for the top 25 actors)
### Director
Create a collection for each director found in the library.