From 92376c24df375485e67af122239986c78b62dbfc Mon Sep 17 00:00:00 2001 From: William Edwards Date: Sat, 7 Jun 2025 15:26:48 -0700 Subject: [PATCH] fix(Engine): update to Godot Engine 4.4.1 --- .github/workflows/test.yaml | 2 +- .releaserc.yaml | 2 +- Makefile | 6 +++--- docker/Dockerfile | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 80871fc3..0494b2cd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,4 +14,4 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - make in-docker IMAGE_TAG=4.4 TARGET='import test GAMESCOPE_CMD=' + make in-docker IMAGE_TAG=4.4.1 TARGET='import test GAMESCOPE_CMD=' diff --git a/.releaserc.yaml b/.releaserc.yaml index 9c4b3553..18c85ca8 100644 --- a/.releaserc.yaml +++ b/.releaserc.yaml @@ -43,7 +43,7 @@ plugins: # Execute commands to build the project - - "@semantic-release/exec" - shell: true - prepareCmd: "make in-docker IMAGE_TAG=4.4 TARGET='force-import dist'" + prepareCmd: "make in-docker IMAGE_TAG=4.4.1 TARGET='force-import dist'" # Publish artifacts as a GitHub release - - "@semantic-release/github" diff --git a/Makefile b/Makefile index 140728e2..b2c5d6ca 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ SSH_DATA_PATH ?= /home/$(SSH_USER)/Projects # systemd-sysext variables SYSEXT_ID ?= steamos SYSEXT_VERSION_ID ?= 3.6.3 -SYSEXT_LIBIIO_VERSION ?= 0.26-2 +SYSEXT_LIBIIO_VERSION ?= 0.26-3 SYSEXT_LIBSERIALPORT_VERSION ?= 0.1.2-1 # Include any user defined settings @@ -387,12 +387,12 @@ $(CACHE_DIR)/gamescope-session-opengamepadui.tar.gz: $(CACHE_DIR)/powerstation.tar.gz: export PS_VERSION=$$(curl -s https://api.github.com/repos/ShadowBlip/PowerStation/releases/latest | jq -r '.name') && \ - wget -O $@ https://github.com/ShadowBlip/PowerStation/releases/download/$${PS_VERSION}/powerstation.tar.gz + wget -O $@ https://github.com/ShadowBlip/PowerStation/releases/download/$${PS_VERSION}/powerstation-x86_64.tar.gz $(CACHE_DIR)/inputplumber.tar.gz: $(CACHE_DIR)/libiio $(CACHE_DIR)/libserialport export IP_VERSION=$$(curl -s https://api.github.com/repos/ShadowBlip/InputPlumber/releases/latest | jq -r '.name') && \ - wget -O $@ https://github.com/ShadowBlip/InputPlumber/releases/download/$${IP_VERSION}/inputplumber.tar.gz + wget -O $@ https://github.com/ShadowBlip/InputPlumber/releases/download/$${IP_VERSION}/inputplumber-x86_64.tar.gz LIBIIO_URL ?= https://mirror.rackspace.com/archlinux/extra/os/x86_64/libiio-$(SYSEXT_LIBIIO_VERSION)-x86_64.pkg.tar.zst diff --git a/docker/Dockerfile b/docker/Dockerfile index 40b5a1db..8aa1de49 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,7 +2,7 @@ FROM archlinux:base-devel LABEL org.opencontainers.image.title="OpenGamepadUI Builder Container" LABEL org.opencontainers.image.description="Build container for OpenGamepadUI" LABEL org.opencontainers.image.source="https://github.com/ShadowBlip/OpenGamepadUI" -LABEL org.opencontainers.image.version="4.4" +LABEL org.opencontainers.image.version="4.4.1" RUN sed -i '/ParallelDownloads/s/^#//g' /etc/pacman.conf @@ -22,7 +22,7 @@ RUN pacman --noconfirm -Syyu && pacman -S --needed --noconfirm \ jq # Download and install the appropriate version of Godot -ARG GODOT_VERSION=4.4 +ARG GODOT_VERSION=4.4.1 ARG GODOT_RELEASE=stable RUN mkdir /tmp/godot && \ wget -q https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-${GODOT_RELEASE}/Godot_v${GODOT_VERSION}-${GODOT_RELEASE}_linux.x86_64.zip -O /tmp/godot/godot.zip && \