Skip to content

Commit 92376c2

Browse files
committed
fix(Engine): update to Godot Engine 4.4.1
1 parent 5109fba commit 92376c2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v3
1616
- run: |
17-
make in-docker IMAGE_TAG=4.4 TARGET='import test GAMESCOPE_CMD='
17+
make in-docker IMAGE_TAG=4.4.1 TARGET='import test GAMESCOPE_CMD='

.releaserc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ plugins:
4343
# Execute commands to build the project
4444
- - "@semantic-release/exec"
4545
- shell: true
46-
prepareCmd: "make in-docker IMAGE_TAG=4.4 TARGET='force-import dist'"
46+
prepareCmd: "make in-docker IMAGE_TAG=4.4.1 TARGET='force-import dist'"
4747

4848
# Publish artifacts as a GitHub release
4949
- - "@semantic-release/github"

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ SSH_DATA_PATH ?= /home/$(SSH_USER)/Projects
3535
# systemd-sysext variables
3636
SYSEXT_ID ?= steamos
3737
SYSEXT_VERSION_ID ?= 3.6.3
38-
SYSEXT_LIBIIO_VERSION ?= 0.26-2
38+
SYSEXT_LIBIIO_VERSION ?= 0.26-3
3939
SYSEXT_LIBSERIALPORT_VERSION ?= 0.1.2-1
4040

4141
# Include any user defined settings
@@ -387,12 +387,12 @@ $(CACHE_DIR)/gamescope-session-opengamepadui.tar.gz:
387387

388388
$(CACHE_DIR)/powerstation.tar.gz:
389389
export PS_VERSION=$$(curl -s https://api.github.com/repos/ShadowBlip/PowerStation/releases/latest | jq -r '.name') && \
390-
wget -O $@ https://github.com/ShadowBlip/PowerStation/releases/download/$${PS_VERSION}/powerstation.tar.gz
390+
wget -O $@ https://github.com/ShadowBlip/PowerStation/releases/download/$${PS_VERSION}/powerstation-x86_64.tar.gz
391391

392392

393393
$(CACHE_DIR)/inputplumber.tar.gz: $(CACHE_DIR)/libiio $(CACHE_DIR)/libserialport
394394
export IP_VERSION=$$(curl -s https://api.github.com/repos/ShadowBlip/InputPlumber/releases/latest | jq -r '.name') && \
395-
wget -O $@ https://github.com/ShadowBlip/InputPlumber/releases/download/$${IP_VERSION}/inputplumber.tar.gz
395+
wget -O $@ https://github.com/ShadowBlip/InputPlumber/releases/download/$${IP_VERSION}/inputplumber-x86_64.tar.gz
396396

397397

398398
LIBIIO_URL ?= https://mirror.rackspace.com/archlinux/extra/os/x86_64/libiio-$(SYSEXT_LIBIIO_VERSION)-x86_64.pkg.tar.zst

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM archlinux:base-devel
22
LABEL org.opencontainers.image.title="OpenGamepadUI Builder Container"
33
LABEL org.opencontainers.image.description="Build container for OpenGamepadUI"
44
LABEL org.opencontainers.image.source="https://github.com/ShadowBlip/OpenGamepadUI"
5-
LABEL org.opencontainers.image.version="4.4"
5+
LABEL org.opencontainers.image.version="4.4.1"
66

77
RUN sed -i '/ParallelDownloads/s/^#//g' /etc/pacman.conf
88

@@ -22,7 +22,7 @@ RUN pacman --noconfirm -Syyu && pacman -S --needed --noconfirm \
2222
jq
2323

2424
# Download and install the appropriate version of Godot
25-
ARG GODOT_VERSION=4.4
25+
ARG GODOT_VERSION=4.4.1
2626
ARG GODOT_RELEASE=stable
2727
RUN mkdir /tmp/godot && \
2828
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 && \

0 commit comments

Comments
 (0)