add SN2 info message support
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
Trenton Zimmer
2026-05-26 21:30:18 -04:00
parent 9edf165198
commit 4bf8050cc6
5 changed files with 20 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
VITE_APP_VERSION="3.1.4"
VITE_APP_VERSION="3.1.5"
VITE_API_URL="http://localhost:8000/"
VITE_API_KEY="your_api_key_should_be_here"
VITE_ASSET_PATH="/assets"

View File

@@ -1,4 +1,4 @@
VITE_APP_VERSION="3.1.4"
VITE_APP_VERSION="3.1.5"
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"

View File

@@ -1,6 +1,6 @@
{
"name": "phaseweb3",
"version": "3.1.4",
"version": "3.1.5",
"scripts": {
"dev": "vite --host",
"build": "vite build",

View File

@@ -50,5 +50,6 @@
"3.1.1": ["- (Admin) Add more admin stats for users", "- (Minor) Add new greetings"],
"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.4": ["- (Major) Add QR game login support", "- (Minor) Add initial CCJ support and events"],
"3.1.5": ["- (Minor) Add DDR SN2 information message support"]
}

View File

@@ -48,10 +48,22 @@ export const DDRClassOptions = {
],
},
{
id: "info_text",
name: "Information Message",
help: "An announcement displayed on the bulletin board.",
id: "news_title",
name: "News Title",
help: "Title of your news post",
type: "String",
},
{
id: "news_body",
name: "News Body",
help: "Body of your news post. Newlines must have a space if you're doing double newlines.",
type: "LargeText",
},
{
id: "info_msg",
name: "Information Message",
help: "An announcement on the demo play screen.",
type: "String",
},
],
};