feat: support big run

main
imspace 2022-12-10 14:42:45 +08:00
parent 235391f002
commit b7ac817014
3 changed files with 5 additions and 9 deletions

View File

@ -1,3 +1,7 @@
## 0.2.3
feat: support big run
## 0.2.2 ## 0.2.2
feat: tracks salmon run grade by group info feat: tracks salmon run grade by group info

View File

@ -1,7 +1,7 @@
import type { StatInkPostBody, VsHistoryDetail } from "./types.ts"; import type { StatInkPostBody, VsHistoryDetail } from "./types.ts";
export const AGENT_NAME = "s3si.ts"; export const AGENT_NAME = "s3si.ts";
export const S3SI_VERSION = "0.2.2"; export const S3SI_VERSION = "0.2.3";
export const NSOAPP_VERSION = "2.4.0"; export const NSOAPP_VERSION = "2.4.0";
export const WEB_VIEW_VERSION = "2.0.0-bd36a652"; export const WEB_VIEW_VERSION = "2.0.0-bd36a652";
export const S3SI_LINK = "https://github.com/spacemeowx2/s3si.ts"; export const S3SI_LINK = "https://github.com/spacemeowx2/s3si.ts";

View File

@ -278,14 +278,6 @@ export class StatInkExporter implements GameExporter {
url, url,
}; };
} else { } else {
if (game.detail.rule !== "REGULAR") {
return {
status: "skip",
reason:
`This salmon run rule is not supported yet: ${game.detail.rule}`,
};
}
const body = await this.mapCoop(game); const body = await this.mapCoop(game);
const { url } = await this.api.postCoop(body); const { url } = await this.api.postCoop(body);