diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 9f775dd..953ebb8 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -16,9 +16,9 @@
- +
Tool
-
BeatLeader Compare
+
Compare PlayerHistories
A vs B: songs A played that B has not
diff --git a/src/routes/guides/beatleader-auth/+page.server.ts b/src/routes/guides/beatleader-auth/+page.server.ts deleted file mode 100644 index 5455d3e..0000000 --- a/src/routes/guides/beatleader-auth/+page.server.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { dev } from '$app/environment'; -import { error } from '@sveltejs/kit'; -import type { PageServerLoad } from './$types'; - -export const load: PageServerLoad = async () => { - if (!dev) { - throw error(404, 'Not found'); - } - - return {}; -}; - diff --git a/src/routes/guides/beatleader-auth/+page.svelte b/src/routes/guides/beatleader-auth/+page.svelte index 0772504..cd763d7 100644 --- a/src/routes/guides/beatleader-auth/+page.svelte +++ b/src/routes/guides/beatleader-auth/+page.svelte @@ -30,7 +30,7 @@ For this app, I explored three ways to access your BeatLeader data: Steam, OAuth, or a website‑style session.

- I wanted tools like Compare Players to show unranked star ratings when your BeatLeader account is a supporter and ShowAllRatings is enabled. That turns out to not be possible without implementing Steam ticket handling using the Steamworks SDK. The rest of the notes here were written before I realized that. + I wanted tools like Compare Players to show unranked star ratings when your BeatLeader account is a supporter and ShowAllRatings is enabled. That turns out to not be possible without implementing Steam ticket handling using the Steamworks SDK. The rest of the notes here were written before I realized that.

@@ -97,7 +97,7 @@
  • scp:offline_access to refresh your session without re‑prompting (optional).
  • - You can still login with OAuth when needed: Login with BeatLeader (OAuth) + You can still login with OAuth when needed: Login with BeatLeader (OAuth)

    After OAuth login, we attempt to enable ShowAllRatings automatically. If your BL account is not a supporter, BL will ignore it. @@ -142,7 +142,7 @@

    OAuth App Setup (for developers)

    1. - Configure BeatLeader OAuth credentials here: BL OAuth Setup. + Configure BeatLeader OAuth credentials here: BL OAuth Setup. If you already have credentials, you can paste them there.