From 693175b351f93080f6968aef47cec8ab1817f294 Mon Sep 17 00:00:00 2001 From: Ian McClellan <65458960+ianmdesign@users.noreply.github.com> Date: Wed, 20 May 2026 03:12:26 -0600 Subject: [PATCH 1/6] Update image repository in build workflow --- .github/workflows/build-and-publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 1ae8a73..7d904bd 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -8,6 +8,7 @@ jobs: build-and-push: runs-on: ubuntu-latest permissions: + contents: read packages: write steps: - name: Check out the code @@ -37,5 +38,5 @@ jobs: push: true platforms: linux/amd64, linux/arm64 tags: | - ghcr.io/valospectra/server:latest - ghcr.io/valospectra/server:${{ env.RELEASE_TAG }} + ghcr.io/ianmdesign/valorantesportsserver:latest + ghcr.io/ianmdesign/valorantesportsserver:${{ env.RELEASE_TAG }} From 4d3daebafa1292d1717862df30280089f5e0ebf7 Mon Sep 17 00:00:00 2001 From: Ian McClellan <65458960+ianmdesign@users.noreply.github.com> Date: Sat, 27 Jun 2026 21:47:37 -0600 Subject: [PATCH 2/6] Test add Summit --- src/util/ValorantInternalTranslator.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/ValorantInternalTranslator.ts b/src/util/ValorantInternalTranslator.ts index 642dc5f..f26b018 100644 --- a/src/util/ValorantInternalTranslator.ts +++ b/src/util/ValorantInternalTranslator.ts @@ -246,6 +246,7 @@ export enum Maps { "HURM_Bowl" = "Kasbah", "HURM_Helix" = "Drift", "Rook" = "Corrode", + "Plummet" = "Summit", } export const Armor: string[] = ["None", "Light", "Heavy", "None", "Regen"] as const; From 73d91b04a9dbb3e67bb1e8a9033c325ac66dfc5c Mon Sep 17 00:00:00 2001 From: Ian McClellan <65458960+ianmdesign@users.noreply.github.com> Date: Sat, 27 Jun 2026 21:49:38 -0600 Subject: [PATCH 3/6] Temp Client Compatibility Change --- src/util/CompatibleClients.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/CompatibleClients.ts b/src/util/CompatibleClients.ts index d6faae9..5315184 100644 --- a/src/util/CompatibleClients.ts +++ b/src/util/CompatibleClients.ts @@ -1,5 +1,5 @@ import semver from "semver"; export function isCompatibleVersion(version: string): boolean { - return semver.satisfies(version, `>=0.3.3 <0.3.25`); + return semver.satisfies(version, `>=0.3.9 <0.3.25`); } From c1552322fc9b84393fa5e72ff7599bdb45e1f0fa Mon Sep 17 00:00:00 2001 From: ianmdesign Date: Sun, 28 Jun 2026 01:56:49 -0600 Subject: [PATCH 4/6] Revert "Temp Client Compatibility Change" This reverts commit 73d91b04a9dbb3e67bb1e8a9033c325ac66dfc5c. --- src/util/CompatibleClients.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/CompatibleClients.ts b/src/util/CompatibleClients.ts index 5315184..d6faae9 100644 --- a/src/util/CompatibleClients.ts +++ b/src/util/CompatibleClients.ts @@ -1,5 +1,5 @@ import semver from "semver"; export function isCompatibleVersion(version: string): boolean { - return semver.satisfies(version, `>=0.3.9 <0.3.25`); + return semver.satisfies(version, `>=0.3.3 <0.3.25`); } From fe3bae9723f843dc8ec0ccd94ba7b9ab8c3bd7dd Mon Sep 17 00:00:00 2001 From: Ian McClellan <65458960+ianmdesign@users.noreply.github.com> Date: Fri, 3 Jul 2026 18:34:49 -0600 Subject: [PATCH 5/6] Main Branch Docker Publish --- .github/workflows/build-and-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 7d904bd..b432d1a 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -38,5 +38,5 @@ jobs: push: true platforms: linux/amd64, linux/arm64 tags: | - ghcr.io/ianmdesign/valorantesportsserver:latest - ghcr.io/ianmdesign/valorantesportsserver:${{ env.RELEASE_TAG }} + ghcr.io/valospectra/server:latest + ghcr.io/valospectra/server:${{ env.RELEASE_TAG }} From 7f173158b366a67c9dee85e337ccd8d10ded2723 Mon Sep 17 00:00:00 2001 From: Ian McClellan <65458960+ianmdesign@users.noreply.github.com> Date: Fri, 3 Jul 2026 18:36:24 -0600 Subject: [PATCH 6/6] Update permissions in build-and-publish workflow --- .github/workflows/build-and-publish.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index b432d1a..1ae8a73 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -8,7 +8,6 @@ jobs: build-and-push: runs-on: ubuntu-latest permissions: - contents: read packages: write steps: - name: Check out the code