diff --git a/.env.development b/.env.development index 76c5a72..51510c3 100644 --- a/.env.development +++ b/.env.development @@ -1,4 +1,4 @@ -VITE_APP_VERSION="3.1.5" +VITE_APP_VERSION="3.1.6" 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 4b7232d..3a8579a 100644 --- a/.env.production +++ b/.env.production @@ -1,4 +1,4 @@ -VITE_APP_VERSION="3.1.5" +VITE_APP_VERSION="3.1.6" 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 6562d68..1eb7b45 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phaseweb3", - "version": "3.1.5", + "version": "3.1.6", "scripts": { "dev": "vite --host", "build": "vite build", diff --git a/public/data-sources/changelog.json b/public/data-sources/changelog.json index dc8a958..d6acb7b 100644 --- a/public/data-sources/changelog.json +++ b/public/data-sources/changelog.json @@ -51,5 +51,6 @@ "3.1.2": ["- (Major) Add initial code for oAuth pages", "- (Major) Add redirect to target page after login", "- (Minor) Add quick links to navbar", "- (Minor) Add new greetings", "- (Minor) Replace login page background", "- (Minor) Add animation to loading modal", "- (Bugfix) Refactor loading modal", "- (Bugfix) Refactor overlay layer", "- (Bugfix) Optimize main layouts", "- (Bugfix) Fix loading states around site", "- (Bugfix) Optimize news read api calls", "- (Minor) Add simple auth checkers to router, blocking access at webui level"], "3.1.3": ["- (Major) Add better error popups, add new buttons on errors", "- (Major) Finish initial authorization page for internal apps", "- (Minor) Add more greetings", "- (Bugfix) Fix overlay layer transparency when saving", "- (Bugfix) Fix remaining missing colors"], "3.1.4": ["- (Major) Add QR game login support", "- (Minor) Add initial CCJ support and events"], - "3.1.5": ["- (Minor) Add DDR SN2 information message support"] + "3.1.5": ["- (Minor) Add DDR SN2 information message support"], + "3.1.6": ["- (Major) Add Song Record Cards for all games that support scores", "- (Major) Update layout and design of a core component, CardBoxStat", "- (Major) Overhaul the game timeline", "- (Bugfix) Various fixes over the past week", "- (Greetings) Add new greetings from superaustin7"] } \ No newline at end of file diff --git a/src/components/CardBoxWidget.vue b/src/components/CardBoxWidget.vue index fc2f5d3..b8b9ba2 100644 --- a/src/components/CardBoxWidget.vue +++ b/src/components/CardBoxWidget.vue @@ -75,10 +75,10 @@ defineProps({
-

+

{{ label }}

-

+

+import { ref } from "vue"; import CardBox from "@/components/CardBox.vue"; +import BaseButton from "@/components/BaseButton.vue"; import { formatDifficulty } from "@/constants/scoreDataFilters"; import { getNestedValue } from "@/constants/values"; +import { PhCaretDown } from "@phosphor-icons/vue"; defineProps({ - thisGame: { - type: Object, - required: true, - }, - chart: { - type: Object, - required: true, - }, - record: { - type: Object, - required: true, - }, + thisGame: Object, + chart: Object, + record: Object, showUser: { type: Boolean, default: false, }, }); + +const isOpen = ref(false);