From e44e3f1dd8b3843fc4d530f830f43e67630ec9a7 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Thu, 23 Jun 2022 15:12:28 -0400 Subject: [PATCH] [59] fix text overlays --- .github/workflows/develop.yml | 2 +- .github/workflows/latest.yml | 2 +- .github/workflows/version.yml | 2 +- VERSION | 2 +- modules/util.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 6a90ccb4..5bd642f6 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -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 diff --git a/.github/workflows/latest.yml b/.github/workflows/latest.yml index 4a3c6aec..eba9989b 100644 --- a/.github/workflows/latest.yml +++ b/.github/workflows/latest.yml @@ -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 diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index c8100d1e..76b9f5e5 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -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 }} diff --git a/VERSION b/VERSION index c3b159d6..b15d3367 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.0-develop58 +1.17.0-develop59 diff --git a/modules/util.py b/modules/util.py index af3b62f7..272a75d4 100644 --- a/modules/util.py +++ b/modules/util.py @@ -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