mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[16] small fix
This commit is contained in:
parent
ed797dfc81
commit
1174499129
3 changed files with 5 additions and 3 deletions
2
VERSION
2
VERSION
|
@ -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.
|
||||
|
||||
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
|
||||
|
|
|
@ -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}")
|
||||
|
|
Loading…
Reference in a new issue