diff --git a/Dockerfile b/Dockerfile index e34dfec..d55c9e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.9.15-slim-bullseye -RUN apt update && apt install default-libmysqlclient-dev build-essential libtk nodejs npm -y +RUN apt update && apt install default-libmysqlclient-dev build-essential libtk nodejs npm pkg-config -y WORKDIR /app COPY requirements.txt requirements.txt @@ -15,7 +15,7 @@ COPY dbutils.py dbutils.py ADD core core ADD titles titles ADD config config -ADD log log +ADD logs logs ADD cert cert ENTRYPOINT [ "/app/entrypoint.sh" ] \ No newline at end of file diff --git a/docs/game_specific_info.md b/docs/game_specific_info.md index 615f10b..545a877 100644 --- a/docs/game_specific_info.md +++ b/docs/game_specific_info.md @@ -551,9 +551,9 @@ Config file is located in `config/idac.yaml`. | `port_matching` | Port number for the Online Battle Matching | | `port_echo1/2` | Port numbers for Echos | | `port_matching_p2p` | Port number for Online Battle (currently unsupported) | -| `stamp.enabled` | Enables/Disabled the play stamp events | +| `stamp.enable` | Enables/Disabled the play stamp events | | `stamp.enabled_stamps` | Define up to 3 play stamp events (without `.json` extension, which are placed in `titles/idac/data/stamps`) | -| `timetrial.enabled` | Enables/Disables the time trial event | +| `timetrial.enable` | Enables/Disables the time trial event | | `timetrial.enabled_timetrial` | Define one! trial event (without `.json` extension, which are placed in `titles/idac/data/timetrial`) | @@ -642,6 +642,7 @@ python dbutils.py --game SDGT upgrade | 70 | Odawara(小田原) | Reverse(逆走) | ### Credits +- Bottersnike: For the HUGE Reverse Engineering help - Kinako: For helping with the timeRelease unlocking of courses and special mode A huge thanks to all people who helped shaping this project to what it is now and don't want to be mentioned here. diff --git a/example_config/idac.yaml b/example_config/idac.yaml index 331ae82..626565e 100644 --- a/example_config/idac.yaml +++ b/example_config/idac.yaml @@ -1,5 +1,5 @@ server: - enabled: True + enable: True loglevel: "info" ssl: False ssl_key: "cert/idac.key" @@ -11,12 +11,12 @@ server: port_matching_p2p: 20003 stamp: - enabled: True + enable: True enabled_stamps: # max 3 play stamps - "touhou_remilia_scarlet" - "touhou_flandre_scarlet" - "touhou_sakuya_izayoi" timetrial: - enabled: True + enable: True enabled_timetrial: "touhou_remilia_scarlet" diff --git a/titles/idac/data/avatarGacha.json b/titles/idac/data/avatarGacha.json index 91bb516..bcfba2f 100644 Binary files a/titles/idac/data/avatarGacha.json and b/titles/idac/data/avatarGacha.json differ