diff --git a/VERSION b/VERSION index ee450cd5..78d37b4a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.16.5-develop15 +1.16.5-develop16 diff --git a/docs/metadata/overlay.md b/docs/metadata/overlay.md index e668a446..de21e8cf 100644 --- a/docs/metadata/overlay.md +++ b/docs/metadata/overlay.md @@ -77,11 +77,13 @@ overlays: There is a special overlay named `blur` that when given as the overlay name will instead of finding the image will just blur the image instead. +You can control the level of the blur by providing a number with the attribute like so `blur(##)`. + ```yaml overlays: blur: overlay: - name: blur + name: blur(50) plex_search: all: resolution: 4K diff --git a/modules/library.py b/modules/library.py index 7abf4c0f..f6e6a017 100644 --- a/modules/library.py +++ b/modules/library.py @@ -307,7 +307,7 @@ class Library(ABC): return items def map_guids(self, items): - logger.info(f"Mapping {self.type} Library: {self.name}", space=False, border=False) + logger.separator(f"Mapping {self.type} Library: {self.name}", space=False, border=False) logger.info("") for i, item in enumerate(items, 1): logger.ghost(f"Processing: {i}/{len(items)} {item.title}")