No description
Find a file
2024-11-25 15:07:35 +02:00
icons update everythaanggg 2024-11-25 10:45:54 +02:00
sounds update everythaanggg 2024-11-25 10:45:54 +02:00
5dd1fe40dbea45cd26d2.cur first commit 2024-07-17 13:13:45 +03:00
88b4a467a18e813218f8.cur first commit 2024-07-17 13:13:45 +03:00
bundle.js couple more tweaks 2024-11-25 15:07:35 +02:00
c7283f73cbd89e54a615.cur first commit 2024-07-17 13:13:45 +03:00
favicon-dark.svg first commit 2024-07-17 13:13:45 +03:00
heartbeat.js first commit 2024-07-17 13:13:45 +03:00
index.html update everythaanggg 2024-11-25 10:45:54 +02:00
readme.md couple more tweaks 2024-11-25 15:07:35 +02:00
robots.txt no more sad.ovh 2024-11-25 11:52:32 +02:00
site.webmanifest update everythaanggg 2024-11-25 10:45:54 +02:00
sitemap.txt no more sad.ovh 2024-11-25 11:52:32 +02:00

Pianoverse Client for pianoverse.me

Extracted from the https://pianoverse.net site at 10:33, November 25.
Bundle.js has modifications to point towards "api.pianoverse.me" Commit ID: 6202927ae53e43bafd8b8fd3be1ffcaaa45426a3

let wsurl = "";
if(!localStorage.host){
    wsurl = "wss://api.pianoverse.me";
} else if(localStorage.host == "mainline") {
    wsurl = "wss://pianoverse.net"
} else if(localStorage.host == "dev") {
    wsurl = "ws://127.0.0.1:8081"
};

this._ws=new WebSocket(wsurl,"pianoverse")

s/,services_client=client;/,services_client=client;window.client=client; s/this._ws=new WebSocket("wss://pianoverse.net","pianoverse")/let wsurl="";if(!localStorage.host){wsurl = "wss://api.pianoverse.me";}else if(localStorage.host=="mainline"){wsurl="wss://pianoverse.net"}else if(localStorage.host == "dev"){wsurl="ws://127.0.0.1:8081"};this._ws=new WebSocket(wsurl,"pianoverse")

To reverse these modifications, run localStorage.host = "mainline". You can also make it point towards 127.0.0.1:8081 with localStorage.host = "dev"

Nushell script for downloading all sounds:

for $x in 21..108 {wget $"https://pianoverse.net/sounds/salamander/($x).mp3"}