Skip to content
Merged
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,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
make in-docker IMAGE_TAG=4.6.1 TARGET='import docs dist test GAMESCOPE_CMD='
make in-docker IMAGE_TAG=4.7.1 TARGET='import docs dist test GAMESCOPE_CMD='

build-x86_64:
name: Run x86_64 build
Expand Down
6 changes: 3 additions & 3 deletions .releaserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ plugins:
- - "@semantic-release/exec"
- shell: true
prepareCmd: |
make in-docker IMAGE_TAG=4.6.1 TARGET='force-import docs'
make in-docker IMAGE_TAG=4.6.1 TARGET='dist update-pkgbuild-hash'
make in-docker IMAGE_TAG=4.6.1 TARGET='dist update-pkgbuild-hash' TARGET_ARCH="aarch64"
make in-docker IMAGE_TAG=4.7.1 TARGET='force-import docs'
make in-docker IMAGE_TAG=4.7.1 TARGET='dist update-pkgbuild-hash'
make in-docker IMAGE_TAG=4.7.1 TARGET='dist update-pkgbuild-hash' TARGET_ARCH="aarch64"
publishCmd: "echo '${nextRelease.version}' > .version.txt"

# Commit the following changes to git after other plugins have run
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM rust:1.94
FROM rust:1.97
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.6.1"
LABEL org.opencontainers.image.version="4.7.1"

RUN dpkg --add-architecture arm64
RUN apt-get update && apt-get install -y \
Expand Down Expand Up @@ -32,7 +32,7 @@ ENV CC_aarch64_unknown_linux_gnu=aarch64-linux-gnu-gcc
ENV CXX_aarch64_unknown_linux_gnu=aarch64-linux-gnu-g++

# Download and install the appropriate version of Godot
ARG GODOT_VERSION=4.6.1
ARG GODOT_VERSION=4.7.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
2 changes: 1 addition & 1 deletion project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ config/name="Open Gamepad UI"
run/main_scene="res://entrypoint.tscn"
config/use_custom_user_dir=true
config/custom_user_dir_name="opengamepadui"
config/features=PackedStringArray("4.6", "Forward Plus")
config/features=PackedStringArray("4.7", "Forward Plus")
run/flush_stdout_on_print=true
run/low_processor_mode=true
boot_splash/bg_color=Color(0, 0, 0, 0)
Expand Down
Loading