Merge pull request #2265 from rommapp/misc/upgrade-ruffle-2025-08-14

misc: Upgrade Ruffle to v2025-08-14
This commit is contained in:
Michael Manganiello
2025-08-15 13:03:43 -03:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -95,8 +95,8 @@ RUN wget "https://github.com/EmulatorJS/EmulatorJS/releases/download/v${EMULATOR
7z x -y "${EMULATORJS_VERSION}.7z" -o/emulatorjs && \ 7z x -y "${EMULATORJS_VERSION}.7z" -o/emulatorjs && \
rm -rf "${EMULATORJS_VERSION}.7z"; rm -rf "${EMULATORJS_VERSION}.7z";
ARG RUFFLE_VERSION=nightly-2024-12-28 ARG RUFFLE_VERSION=nightly-2025-08-14
ARG RUFFLE_FILE=ruffle-nightly-2024_12_28-web-selfhosted.zip 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}" && \ RUN wget "https://github.com/ruffle-rs/ruffle/releases/download/${RUFFLE_VERSION}/${RUFFLE_FILE}" && \
unzip -o "${RUFFLE_FILE}" -d /ruffle && \ unzip -o "${RUFFLE_FILE}" -d /ruffle && \
rm -f "${RUFFLE_FILE}"; rm -f "${RUFFLE_FILE}";

View File

@@ -9,7 +9,7 @@ import { nextTick, onMounted, ref } from "vue";
import { useRoute } from "vue-router"; import { useRoute } from "vue-router";
import { useI18n } from "vue-i18n"; 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 DEFAULT_BACKGROUND_COLOR = "#0D1117";
const { t } = useI18n(); const { t } = useI18n();