Release the release version. :) Please squash.

This commit is contained in:
DitFranXX
2021-05-25 21:09:14 +09:00
parent 1a9f32916c
commit d290608305
7 changed files with 36 additions and 75 deletions
+14 -7
View File
@@ -2,16 +2,13 @@ import { gameInfoGet, shopInfoRegist } from "./handlers/info";
import { playableMusic } from "./handlers/MusicList"
import { getPlayer, check, regist, savePlayer } from "./handlers/profiles";
import { updatePlayerInfo } from "./handlers/webui";
import { isRequiredCoreVersion } from "./utils";
import { initialze as migrationInitialize } from "./utils/migration"
import { isAsphyxiaDebugMode, isRequiredCoreVersion } from "./utils";
export function register() {
if(!isRequiredCoreVersion(1, 20)) {
console.error("You need newer version of Core. v1.20 or newer required.")
}
migrationInitialize()
R.GameCode('M32');
R.Config("encore_version", {
@@ -21,9 +18,18 @@ export function register() {
default: 13,
})
R.Config("nextage_dummy_encore", {
name: "Dummy Encore for SPE (Nextage Only)",
desc: "Since Nextage's Special Premium Encore system is bit complicated, \n"
+ "SPE System isn't fully implemented. \n"
+ "This thing is bandage of these problem as limiting some Encores for SPE.",
type: "boolean",
default: false
})
R.Config("enable_custom_mdb", {
name: "Enable Custom MDB",
desc: "For who uses own MDB",
desc: "For who uses own MDB. eg) Omnimix.",
type: "boolean",
default: false,
})
@@ -41,7 +47,6 @@ export function register() {
R.Route(`exchain_${method}`, handler);
R.Route(`matixx_${method}`, handler);
R.Route(`nextage_${method}`, handler)
R.Route(`highvoltage_${method}`, handler) // Prediction
// TODO: TB, TBRE and more older version?
};
@@ -61,6 +66,8 @@ export function register() {
R.Unhandled(async (info, data, send) => {
if (["eventlog"].includes(info.module)) return;
console.error(`Received Unhandled Response on ${info.method} by ${info.model}/${info.module}`)
console.error(`Received Request: ${JSON.stringify(data, null, 4)}`)
if (isAsphyxiaDebugMode()){
console.error(`Received Request: ${JSON.stringify(data, null, 4)}`)
}
})
}