Skip to content

fix(Engine): update to Godot Engine 4.4.1 #460

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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='
2 changes: 1 addition & 1 deletion .releaserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 && \
Expand Down