From 490ebfaafd3ef501a9af4aae85149e199b84acb7 Mon Sep 17 00:00:00 2001 From: Usman Shafiq Date: Tue, 20 Aug 2024 17:02:48 -0400 Subject: [PATCH] VRCX API Update Changes (#876) --- Linux/install-vrcx.sh | 4 ++-- html/src/app.js | 7 ------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Linux/install-vrcx.sh b/Linux/install-vrcx.sh index f09a411b..4c64cb5b 100644 --- a/Linux/install-vrcx.sh +++ b/Linux/install-vrcx.sh @@ -1,8 +1,8 @@ #!/usr/bin/env bash steamapps=$HOME/.local/share/Steam/steamapps/compatdata -stable=$(curl -s https://api.github.com/repos/vrcx-team/VRCX/releases/latest | grep -o "https.*releases/download.*zip") -nightly=$(curl -s https://api.github.com/repos/Natsumi-sama/VRCX/releases/latest | grep -o "https.*releases/download.*zip") +stable=$(curl -s https://api0.vrcx.app/releases/stable/latest | grep -o "https.*releases/download.*zip") +nightly=$(curl -s https://api0.vrcx.app/releases/nightly/latest | grep -o "https.*releases/download.*zip") download_url=$stable XDG_DATA_HOME=${XDG_DATA_HOME:=$HOME/.local/share} diff --git a/html/src/app.js b/html/src/app.js index c4f85f31..27935f09 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -25720,13 +25720,6 @@ speechSynthesis.getVoices(); return; } for (var release of json) { - if ( - release.target_commitish === 'PyPyDanceCompanion' || - release.prerelease - ) { - // skip old branch name and prerelease builds - continue; - } for (var asset of release.assets) { if ( (asset.content_type === 'application/x-msdownload' ||