-
+
Manual Submit
Submit your plays by entering the clear % of a song
@@ -1479,7 +1509,7 @@ function Submit(p) {
>}
-
+
Image Upload
Upload images from your Playstation/Nintendo Switch for automatic processing/scoring!
@@ -1489,7 +1519,7 @@ function Submit(p) {
-
+
Playstation/Nintendo Switch/Twitter Upload
Setup your account for uploading through Twitter using your Playstation or Nintendo Switch!
@@ -1497,6 +1527,26 @@ function Submit(p) {
+
+
+
+
+
Stream Monitoring
+
Stream Project Diva Future Tone through your Playstation 4 to submit records!
+
Specify your Twitch account and then start up a stream monitor that will watch your game as you play, recording your results.
+
+
+
+
+
+
+
+
DivaBot
+
Use your capture card / stream setup to monitor your game screen as you play.
+
This uses software developed by sigonasr2 that automatically records your results as you play.
+
+
+
@@ -1507,11 +1557,13 @@ function Submit(p) {
function RecentPlays(p) {
const [update,setUpdate] = useState(false)
const [recentPlayData,setRecentPlayData] = useState([])
+ var [modalsrc,setModalSrc] = useState({})
+ var [modalVisible,setModalVisible] = useState(false);
useEffect(()=>{
const interval = setInterval(()=>{
- axios.get("http://projectdivar.com/recentplays/sigonasr2")
+ axios.get("http://projectdivar.com/recentplays/"+p.username)
.then((data)=>{
setRecentPlayData(data.data);
})
@@ -1523,7 +1575,8 @@ function RecentPlays(p) {
return (
<>
- {recentPlayData.map((play,i)=>
)}
+
+ {recentPlayData.map((play,i)=>)}
>
)
}
@@ -1561,14 +1614,12 @@ function LoginInfo(p) {
<>
{loggedIn?<>
Welcome, {username}!
- My Profile
- Edit Profile Settings
- My Stream Panel
- App Auth Code
-
+ My Profile
+ Edit Profile Settings
+ My Stream Panel
>:<>
- Login
- Register
+ Login
+ Register
>}
>
)
@@ -1584,7 +1635,7 @@ function Login(p) {
let history = useHistory();
if (p.isLoggedIn) {
- history.push("/")
+ return ()
}
return (
@@ -1678,7 +1729,7 @@ function Register(p) {
>}
Username
- {setUsername(e.currentTarget.value)}} placeholder="MikuMiku" value={username} />
+ {setUsername(e.currentTarget.value)}} placeholder="MikuMiku" value={username} />
Email Address
@@ -1701,7 +1752,8 @@ function Register(p) {
>
}