Merge remote-tracking branch 'upstream/main' into splashcat-exporter
commit
7de96fc85f
|
|
@ -29,7 +29,7 @@ jobs:
|
||||||
|
|
||||||
- uses: pnpm/action-setup@v2
|
- uses: pnpm/action-setup@v2
|
||||||
with:
|
with:
|
||||||
version: 7.29.1
|
version: 8.11.0
|
||||||
|
|
||||||
- name: Sync node version and setup cache
|
- name: Sync node version and setup cache
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
## 0.4.11
|
||||||
|
|
||||||
|
chore: update `WEB_VIEW_VERSION` and queries
|
||||||
|
|
||||||
## 0.4.10
|
## 0.4.10
|
||||||
|
|
||||||
feat: support random primary ability
|
feat: support random primary ability
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
},
|
},
|
||||||
"package": {
|
"package": {
|
||||||
"productName": "s3si-ts",
|
"productName": "s3si-ts",
|
||||||
"version": "0.4.10"
|
"version": "0.4.11"
|
||||||
},
|
},
|
||||||
"tauri": {
|
"tauri": {
|
||||||
"allowlist": {
|
"allowlist": {
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,12 @@ export const SEASONS: Season[] = [
|
||||||
start: new Date("2023-09-01T00:00:00+00:00"),
|
start: new Date("2023-09-01T00:00:00+00:00"),
|
||||||
end: new Date("2023-12-01T00:00:00+00:00"),
|
end: new Date("2023-12-01T00:00:00+00:00"),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "season202312",
|
||||||
|
name: "Chill Season 2023",
|
||||||
|
start: new Date("2023-12-01T00:00:00+00:00"),
|
||||||
|
end: new Date("2024-03-01T00:00:00+00:00"),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export const getSeason = (date: Date): Season | undefined => {
|
export const getSeason = (date: Date): Season | undefined => {
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@ import type { StatInkPostBody, VsHistoryDetail } from "./types.ts";
|
||||||
|
|
||||||
export const AGENT_NAME = "splashcat / s3si.ts";
|
export const AGENT_NAME = "splashcat / s3si.ts";
|
||||||
export const AGENT_VERSION = "1.1.1";
|
export const AGENT_VERSION = "1.1.1";
|
||||||
export const S3SI_VERSION = "0.4.10";
|
export const S3SI_VERSION = "0.4.11";
|
||||||
export const COMBINED_VERSION = `${AGENT_VERSION}/${S3SI_VERSION}`;
|
export const COMBINED_VERSION = `${AGENT_VERSION}/${S3SI_VERSION}`;
|
||||||
export const NSOAPP_VERSION = "2.7.1";
|
export const NSOAPP_VERSION = "2.7.1";
|
||||||
export const WEB_VIEW_VERSION = "4.0.0-dae4328c";
|
export const WEB_VIEW_VERSION = "6.0.0-e135295b";
|
||||||
export enum Queries {
|
export enum Queries {
|
||||||
HomeQuery =
|
HomeQuery =
|
||||||
"51fc56bbf006caf37728914aa8bc0e2c86a80cf195b4d4027d6822a3623098a8",
|
"51fc56bbf006caf37728914aa8bc0e2c86a80cf195b4d4027d6822a3623098a8",
|
||||||
|
|
@ -26,7 +26,7 @@ export enum Queries {
|
||||||
CoopHistoryQuery =
|
CoopHistoryQuery =
|
||||||
"0f8c33970a425683bb1bdecca50a0ca4fb3c3641c0b2a1237aedfde9c0cb2b8f",
|
"0f8c33970a425683bb1bdecca50a0ca4fb3c3641c0b2a1237aedfde9c0cb2b8f",
|
||||||
CoopHistoryDetailQuery =
|
CoopHistoryDetailQuery =
|
||||||
"824a1e22c4ad4eece7ad94a9a0343ecd76784be4f77d8f6f563c165afc8cf602",
|
"42262d241291d7324649e21413b29da88c0314387d8fdf5f6637a2d9d29954ae",
|
||||||
myOutfitCommonDataFilteringConditionQuery =
|
myOutfitCommonDataFilteringConditionQuery =
|
||||||
"ac20c44a952131cb0c9d00eda7bc1a84c1a99546f0f1fc170212d5a6bb51a426",
|
"ac20c44a952131cb0c9d00eda7bc1a84c1a99546f0f1fc170212d5a6bb51a426",
|
||||||
myOutfitCommonDataEquipmentsQuery =
|
myOutfitCommonDataEquipmentsQuery =
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue