@ -11,6 +11,8 @@ Added the `character` search option to the `imdb_search` builder
Added ability to use Show-level ratings at the season and episode level for Overlays if the original source does not provide ratings at the season or episode level. This is accomplished using (Special Text Variables)[https://kometa.wiki/en/latest/files/overlays/#special-text-variables] but is not yet available for the `Ratings` Defaults file.
Add `show_unfiltered` setting to display items which make it through a filter
Allow `sync_to_trakt_list` on episode-level collections
When using `mass_poster_update`, added `ignore_locked` and `ignore_overlays` attributes which will prevent Kometa from resetting the image if the poster field is locked (i.e. a previous mass poster update) or if the item has an Overlay. This can effectively act as a differential update system.
When using `mass_background_update`, added `ignore_locked` attribute which will prevent Kometa from resetting the image if the poster field is locked (i.e. a previous mass poster update). This can effectively act as a differential update system.
@ -495,10 +495,15 @@ You can create individual blocks of operations by using a list under `operations
<tableclass="clearTable">
<tr><td>`source`</td><td>Source of the poster update</td><td>`tmdb`, `plex`, `lock`, or `unlock`</td></tr>
<tr><td>`seasons`</td><td>Update season posters while updating shows **Default:**`true`</td><td>`true` (default) or `false`</td></tr>
<tr><td>`episodes`</td><td>Update episode posters while updating shows **Default:**`true`</td><td>`true` (default) or `false`</td></tr>
<tr><td>`seasons`</td><td>Update season posters while updating shows **Default:**`true`</td><td>`true` or `false`</td></tr>
<tr><td>`episodes`</td><td>Update episode posters while updating shows **Default:**`true`</td><td>`true` or `false`</td></tr>
<tr><td>`ignore_locked`</td><td>Skip updating image if the poster field is locked<sup>1</sup>.<br>**Default:**`false`</td><td>`true` or `false`</td></tr>
<tr><td>`ignore_overlays`</td><td>Skip updating image if the current image has an Overlay<sup>2</sup>.<br>**Default:**`false`</td><td>`true` or `false`</td></tr>
</table>
1. The poster field will be locked if a previous `mass_poster_update` was run or if an Overlay has been applied.
2. Kometa checks for the `Overlay` label on the item in Plex to determine if an Overlay is applied.
???+ example "Example"
```yaml
@ -531,10 +536,13 @@ You can create individual blocks of operations by using a list under `operations
<tableclass="clearTable">
<tr><td>`source`</td><td>Source of the poster update</td><td>`tmdb`, `plex`, `lock`, or `unlock`</td></tr>
<tr><td>`seasons`</td><td>Update season posters while updating shows **Default:**`true`</td><td>`true` (default) or `false`</td></tr>
<tr><td>`episodes`</td><td>Update episode posters while updating shows **Default:**`true`</td><td>`true` (default) or `false`</td></tr>
<tr><td>`seasons`</td><td>Update season posters while updating shows **Default:**`true`</td><td>`true` or `false`</td></tr>
<tr><td>`episodes`</td><td>Update episode posters while updating shows **Default:**`true`</td><td>`true` or `false`</td></tr>
<tr><td>`ignore_locked`</td><td>Skip updating image if the poster field is locked.<sup>1</sup>**Default:**`false`</td><td>`true` or `false`</td></tr>
</table>
1. The background field will be locked if a previous `mass_background_update` was run.