[16] small fix

pull/858/head
meisnate12 3 years ago
parent ed797dfc81
commit 1174499129

@ -1 +1 @@
1.16.5-develop15 1.16.5-develop16

@ -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. 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 ```yaml
overlays: overlays:
blur: blur:
overlay: overlay:
name: blur name: blur(50)
plex_search: plex_search:
all: all:
resolution: 4K resolution: 4K

@ -307,7 +307,7 @@ class Library(ABC):
return items return items
def map_guids(self, 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("") logger.info("")
for i, item in enumerate(items, 1): for i, item in enumerate(items, 1):
logger.ghost(f"Processing: {i}/{len(items)} {item.title}") logger.ghost(f"Processing: {i}/{len(items)} {item.title}")

Loading…
Cancel
Save