docs: add missing games
This commit is contained in:
parent
045465ed4e
commit
1d8e31d4ab
@ -26,10 +26,12 @@ python dbutils.py migrate
|
|||||||
- [CHUNITHM](#chunithm)
|
- [CHUNITHM](#chunithm)
|
||||||
- [crossbeats REV.](#crossbeats-rev)
|
- [crossbeats REV.](#crossbeats-rev)
|
||||||
- [maimai DX](#maimai-dx)
|
- [maimai DX](#maimai-dx)
|
||||||
|
- [Project Diva](#hatsune-miku-project-diva)
|
||||||
- [O.N.G.E.K.I.](#o-n-g-e-k-i)
|
- [O.N.G.E.K.I.](#o-n-g-e-k-i)
|
||||||
- [Card Maker](#card-maker)
|
- [Card Maker](#card-maker)
|
||||||
- [WACCA](#wacca)
|
- [WACCA](#wacca)
|
||||||
- [Sword Art Online Arcade](#sao)
|
- [Sword Art Online Arcade](#sao)
|
||||||
|
- [Initial D Zero](#initial-d-zero)
|
||||||
- [Initial D THE ARCADE](#initial-d-the-arcade)
|
- [Initial D THE ARCADE](#initial-d-the-arcade)
|
||||||
- [Pokken Tournament](#pokken)
|
- [Pokken Tournament](#pokken)
|
||||||
|
|
||||||
@ -294,6 +296,23 @@ Always make sure your database (tables) are up-to-date:
|
|||||||
python dbutils.py upgrade
|
python dbutils.py upgrade
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Using NGINX
|
||||||
|
|
||||||
|
Diva's netcode does not send a `Host` header with it's network requests. This renders it incompatable with NGINX as configured in the example config, because nginx relies on the header to determine how to proxy the request. If you'd still like to use NGINX with diva, please see the sample config below.
|
||||||
|
|
||||||
|
```conf
|
||||||
|
server {
|
||||||
|
listen 80 default_server;
|
||||||
|
server_name _;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_pass_request_headers on;
|
||||||
|
proxy_pass http://127.0.0.1:8080/;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## O.N.G.E.K.I.
|
## O.N.G.E.K.I.
|
||||||
|
|
||||||
### SDDT
|
### SDDT
|
||||||
@ -652,21 +671,32 @@ python dbutils.py upgrade
|
|||||||
```
|
```
|
||||||
|
|
||||||
### Notes
|
### Notes
|
||||||
- Defrag Match will crash at loading
|
- Defrag Match and online coop requires a cloud instance of Photon and a working application ID
|
||||||
- Co-Op Online is not supported
|
|
||||||
- Shop is displayed but cannot purchase heroes or items
|
|
||||||
- Player title is currently static and cannot be changed in-game
|
- Player title is currently static and cannot be changed in-game
|
||||||
- QR Card Scanning currently only load a static hero
|
- QR Card Scanning of existing cards requires them to be registered on the webui
|
||||||
- Ex-quests progression not supported yet
|
|
||||||
- Daily Missions not implemented
|
- Daily Missions not implemented
|
||||||
- EX TOWER 1,2 & 3 are not yet supported
|
- Terminal functionality is almost entirely untested
|
||||||
- Daily Yui coin not yet fixed
|
|
||||||
|
|
||||||
### Credits for SAO support:
|
### Credits for SAO support:
|
||||||
|
|
||||||
- Midorica - Network Support
|
- Midorica - Network Support
|
||||||
- Dniel97 - Helping with network base
|
- Dniel97 - Helping with network base
|
||||||
- tungnotpunk - Source
|
- tungnotpunk - Source
|
||||||
|
- Hay1tsme - fixing many issues with the original implemetation
|
||||||
|
|
||||||
|
## Initial D Zero
|
||||||
|
### SDDF
|
||||||
|
|
||||||
|
| Version ID | Version Name |
|
||||||
|
| ---------- | -------------------- |
|
||||||
|
| 0 | Initial D Zero v1.10 |
|
||||||
|
| 1 | Initial D Zero v1.30 |
|
||||||
|
| 2 | Initial D Zero v2.10 |
|
||||||
|
| 3 | Initial D Zero v2.30 |
|
||||||
|
|
||||||
|
### Info
|
||||||
|
|
||||||
|
TODO, probably just leave disabled unless you're doing development things for it.
|
||||||
|
|
||||||
## Initial D THE ARCADE
|
## Initial D THE ARCADE
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user