From 712e123e3f202e525a0af9efe77aca4b0cacaa23 Mon Sep 17 00:00:00 2001 From: Trenton Zimmer <66042448+trmazi@users.noreply.github.com> Date: Mon, 29 Dec 2025 20:35:29 -0500 Subject: [PATCH] fix race condition bug, add new customize --- .env.development | 2 +- .env.production | 2 +- package.json | 2 +- public/data-sources/changelog.json | 3 +- src/colors.js | 2 ++ src/components/BaseIcon.vue | 12 +++++++- src/constants/customizations.js | 9 ++++++ src/constants/index.js | 4 ++- src/constants/scheduledEvents/popnEvents.js | 23 ++++++++++++++ src/views/Game/GameView.vue | 33 +++++++++++---------- src/views/Profile/CustomizeView.vue | 9 ++++++ 11 files changed, 79 insertions(+), 22 deletions(-) create mode 100644 src/constants/scheduledEvents/popnEvents.js diff --git a/.env.development b/.env.development index 0197d08..e8fe015 100644 --- a/.env.development +++ b/.env.development @@ -1,4 +1,4 @@ -VITE_APP_VERSION="3.0.43" +VITE_APP_VERSION="3.0.44" VITE_API_URL="http://localhost:8000/" VITE_API_KEY="your_api_key_should_be_here" VITE_ASSET_PATH="/assets" diff --git a/.env.production b/.env.production index 3756782..6574d57 100644 --- a/.env.production +++ b/.env.production @@ -1,4 +1,4 @@ -VITE_APP_VERSION="3.0.43" +VITE_APP_VERSION="3.0.44" VITE_API_URL="https://restfulsleep.phaseii.network" VITE_API_KEY="your_api_key_should_be_here" VITE_ASSET_PATH="https://cdn.phaseii.network/file/PhaseII/web-assets" diff --git a/package.json b/package.json index 50de9aa..8a6baa6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phaseweb3", - "version": "3.0.42", + "version": "3.0.44", "scripts": { "dev": "vite --host", "build": "vite build", diff --git a/public/data-sources/changelog.json b/public/data-sources/changelog.json index 293fe57..ef3c304 100644 --- a/public/data-sources/changelog.json +++ b/public/data-sources/changelog.json @@ -42,5 +42,6 @@ "3.0.40": ["- (Major) Add banned user filtering on profile lists (SoffiMeower optimized)", "- (Bugfix) Fix rivals loading from incorrect versions"], "3.0.41": ["- (Major) Completely refactor user profile schema", "- (Major) Add Hitchart to player view", "- (Major) Add changelog archive view"], "3.0.42-oMini": ["- (Major) Refactor loading state", "- (Minor) Add two new customizations, filled/outlined PillTags and Buttons"], - "3.0.43": ["- (Major) Add pop'n music Jam&Fizz"] + "3.0.43": ["- (Major) Add pop'n music Jam&Fizz"], + "3.0.44": ["- (Bugfix) Fix broken race state on game page", "- (Major) Add customization options for BaseIcon fill type", "- (Major) Add pop'n music weekly course song"] } \ No newline at end of file diff --git a/src/colors.js b/src/colors.js index 6b76f94..d268441 100644 --- a/src/colors.js +++ b/src/colors.js @@ -11,6 +11,8 @@ export const colorsBgLight = { danger: "bg-red-700 border-red-500 text-white", warning: "bg-yellow-700 border-yellow-500 text-white", info: "bg-blue-700 border-blue-500 text-white", + sakura: "bg-pink-700 border-pink-500 text-white", + gold: "bg-amber-700 border-amber-500 text-white", }; export const colorsText = { diff --git a/src/components/BaseIcon.vue b/src/components/BaseIcon.vue index e3530ab..09def5a 100644 --- a/src/components/BaseIcon.vue +++ b/src/components/BaseIcon.vue @@ -1,5 +1,8 @@