diff --git a/components/PlayerStats.js b/components/PlayerStats.js index 28dfe05..11d2e61 100644 --- a/components/PlayerStats.js +++ b/components/PlayerStats.js @@ -2,7 +2,9 @@ import ReactCountryFlag from "react-country-flag"; const PlayerStats = (props) => { return
{props.pp}pp
+{props.pp}pp ({props.websiteType})
#{props.globalPos}
#{props.countryRank}
diff --git a/config.json b/config.json index 7947c5f..a62c541 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,7 @@ { "name": "BeatSaber Overlay", - "description": "A simple scoresaber overlay for OBS", + "title": "BeatSaber Overlay - Simple and easy to use BeatSaber overlay", + "description": "Free, simple, and easy to use beat saber overlay for OBS", "color": "#0EBFE9", "url": "https://bs-overlay.fascinated.cc", "proxy_url": "https://bangor375.herokuapp.com" diff --git a/pages/_app.js b/pages/_app.js index d560a3b..0750f97 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -12,7 +12,7 @@ function MyApp({ Component, pageProps }) { // 2. Use at the root of your appThis is currently just a simple overlay for OBS displaying ScoreSaber stats.
+This is currently just a simple overlay for OBS displaying ScoreSaber or BeatLeader stats.
If you have any suggestions you can message me on discord @ Fascinated#4719
Provide a valid scoresaber id
+Provide a valid steam id for scoresaber or beatleader
Example: {document.location.origin}?id=76561198449412074
Example with Score Info: {document.location.origin}?id=76561198449412074&scoreinfo=true
beatleader - Can be "true" if you wish to get player data from BeatLeader rather than scoresaber
scoreinfo - Can be "true" if you want to show your current score (needs HTTP Status)
playerstats - Can be "false" if you disable showing your stats (pp, global pos, etc)
songinfo - Can be "true" if want to see information about the song (song name, bsr, song art, etc)
@@ -337,12 +342,13 @@ export default class Home extends Component {