diff --git a/docker/Dockerfile b/docker/Dockerfile index 391132ba3..ae3eb8d62 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -95,8 +95,8 @@ RUN wget "https://github.com/EmulatorJS/EmulatorJS/releases/download/v${EMULATOR 7z x -y "${EMULATORJS_VERSION}.7z" -o/emulatorjs && \ rm -rf "${EMULATORJS_VERSION}.7z"; -ARG RUFFLE_VERSION=nightly-2024-12-28 -ARG RUFFLE_FILE=ruffle-nightly-2024_12_28-web-selfhosted.zip +ARG RUFFLE_VERSION=nightly-2025-08-14 +ARG RUFFLE_FILE=ruffle-nightly-2025_08_14-web-selfhosted.zip RUN wget "https://github.com/ruffle-rs/ruffle/releases/download/${RUFFLE_VERSION}/${RUFFLE_FILE}" && \ unzip -o "${RUFFLE_FILE}" -d /ruffle && \ rm -f "${RUFFLE_FILE}"; diff --git a/frontend/src/views/Player/RuffleRS/Base.vue b/frontend/src/views/Player/RuffleRS/Base.vue index 1a275155a..95b59e1df 100644 --- a/frontend/src/views/Player/RuffleRS/Base.vue +++ b/frontend/src/views/Player/RuffleRS/Base.vue @@ -9,7 +9,7 @@ import { nextTick, onMounted, ref } from "vue"; import { useRoute } from "vue-router"; import { useI18n } from "vue-i18n"; -const RUFFLE_VERSION = "0.1.0-nightly.2024.12.28"; +const RUFFLE_VERSION = "0.2.0-nightly.2025.8.14"; const DEFAULT_BACKGROUND_COLOR = "#0D1117"; const { t } = useI18n();