[59] fix text overlays

This commit is contained in:
meisnate12 2022-06-23 15:12:28 -04:00
parent b557fb17ab
commit e44e3f1dd8
5 changed files with 5 additions and 5 deletions

View file

@ -38,7 +38,7 @@ jobs:
with:
context: ./
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:develop

View file

@ -34,7 +34,7 @@ jobs:
with:
context: ./
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:latest

View file

@ -40,7 +40,7 @@ jobs:
with:
context: ./
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/plex-meta-manager:${{ steps.get_version.outputs.VERSION }}

View file

@ -1 +1 @@
1.17.0-develop58
1.17.0-develop59

View file

@ -1146,7 +1146,7 @@ class Overlay:
main_y = start_y + back_height - (text_height if text is not None else image_height)
else:
main_x = start_x + (back_width - box_width) // 2
main_y = start_y + (back_height - box_width) // 2
main_y = start_y + (back_height - box_height) // 2
addon_x = None
addon_y = None