diff --git a/.github/workflows/gui.yaml b/.github/workflows/gui.yaml index f44d2cd..09c99e1 100644 --- a/.github/workflows/gui.yaml +++ b/.github/workflows/gui.yaml @@ -27,7 +27,7 @@ jobs: with: deno-version: 1.x - - uses: pnpm/action-setup@v2 + - uses: pnpm/action-setup@v4 with: version: 8.11.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index bf52d64..17ac7dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.4.20 + +fix: update `NSOAPP_VERSION` + +## 0.4.19 + +feat: update `NSOAPP_VERSION` + +## 0.4.18 + +feat: update `WEB_VIEW_VERSION` and `NSOAPP_VERSION`, update VersionData + ## 0.4.17 feat: update `WEB_VIEW_VERSION` and `NSOAPP_VERSION` diff --git a/gui/src-tauri/tauri.conf.json b/gui/src-tauri/tauri.conf.json index 0815ebd..80aec26 100644 --- a/gui/src-tauri/tauri.conf.json +++ b/gui/src-tauri/tauri.conf.json @@ -9,7 +9,7 @@ }, "package": { "productName": "s3si-ts", - "version": "0.4.17" + "version": "0.4.20" }, "tauri": { "allowlist": { diff --git a/src/VersionData.ts b/src/VersionData.ts index 2cac5c1..3e844ae 100644 --- a/src/VersionData.ts +++ b/src/VersionData.ts @@ -48,6 +48,48 @@ export const SEASONS: Season[] = [ start: new Date("2024-03-01T00:00:00+00:00"), end: new Date("2024-06-01T00:00:00+00:00"), }, + { + id: "season202406", + name: "Sizzle Season 2024", + start: new Date("2024-06-01T00:00:00+00:00"), + end: new Date("2024-09-01T00:00:00+00:00"), + }, + { + id: "season202409", + name: "Drizzle Season 2024", + start: new Date("2024-09-01T00:00:00+00:00"), + end: new Date("2024-12-01T00:00:00+00:00"), + }, + { + id: "season202412", + name: "Chill Season 2024", + start: new Date("2024-12-01T00:00:00+00:00"), + end: new Date("2025-03-01T00:00:00+00:00"), + }, + { + id: "season202503", + name: "Fresh Season 2025", + start: new Date("2025-03-01T00:00:00+00:00"), + end: new Date("2025-06-01T00:00:00+00:00"), + }, + { + id: "season202506", + name: "Sizzle Season 2025", + start: new Date("2025-06-01T00:00:00+00:00"), + end: new Date("2025-09-01T00:00:00+00:00"), + }, + { + id: "season202509", + name: "Drizzle Season 2025", + start: new Date("2025-09-01T00:00:00+00:00"), + end: new Date("2025-12-01T00:00:00+00:00"), + }, + { + id: "season202512", + name: "Chill Season 2025", + start: new Date("2025-12-01T00:00:00+00:00"), + end: new Date("2026-03-01T00:00:00+00:00"), + }, ]; export const getSeason = (date: Date): Season | undefined => { diff --git a/src/constant.ts b/src/constant.ts index aac057a..ae07efb 100644 --- a/src/constant.ts +++ b/src/constant.ts @@ -1,9 +1,9 @@ import type { StatInkPostBody, VsHistoryDetail } from "./types.ts"; export const AGENT_NAME = "s3si.ts"; -export const S3SI_VERSION = "0.4.17"; -export const NSOAPP_VERSION = "2.10.0"; -export const WEB_VIEW_VERSION = "6.0.0-2ba8cb04"; +export const S3SI_VERSION = "0.4.20"; +export const NSOAPP_VERSION = "2.10.1"; +export const WEB_VIEW_VERSION = "6.0.0-9f87c815"; export enum Queries { HomeQuery = "51fc56bbf006caf37728914aa8bc0e2c86a80cf195b4d4027d6822a3623098a8", @@ -20,17 +20,17 @@ export enum Queries { PrivateBattleHistoriesQuery = "fef94f39b9eeac6b2fac4de43bc0442c16a9f2df95f4d367dd8a79d7c5ed5ce7", VsHistoryDetailQuery = - "f893e1ddcfb8a4fd645fd75ced173f18b2750e5cfba41d2669b9814f6ceaec46", + "94faa2ff992222d11ced55e0f349920a82ac50f414ae33c83d1d1c9d8161c5dd", CoopHistoryQuery = - "0f8c33970a425683bb1bdecca50a0ca4fb3c3641c0b2a1237aedfde9c0cb2b8f", + "e11a8cf2c3de7348495dea5cdcaa25e0c153541c4ed63f044b6c174bc5b703df", CoopHistoryDetailQuery = - "42262d241291d7324649e21413b29da88c0314387d8fdf5f6637a2d9d29954ae", + "f2d55873a9281213ae27edc171e2b19131b3021a2ae263757543cdd3bf015cc8", myOutfitCommonDataFilteringConditionQuery = "ac20c44a952131cb0c9d00eda7bc1a84c1a99546f0f1fc170212d5a6bb51a426", myOutfitCommonDataEquipmentsQuery = "45a4c343d973864f7bb9e9efac404182be1d48cf2181619505e9b7cd3b56a6e8", HistoryRecordQuery = - "0a62c0152f27c4218cf6c87523377521c2cff76a4ef0373f2da3300079bf0388", + "a654ecc80161a7ca5c38761c1d9e502d405eae764e2d343618b9c74b1dc0a80f", ConfigureAnalyticsQuery = "2a9302bdd09a13f8b344642d4ed483b9464f20889ac17401e993dfa5c2bb3607", } diff --git a/src/iksm.ts b/src/iksm.ts index 9fb537d..c85070e 100644 --- a/src/iksm.ts +++ b/src/iksm.ts @@ -212,16 +212,18 @@ export async function getGToken( ); const respJson = await resp.json(); - const idToken2: string = respJson?.result?.webApiServerCredential + const idToken2: string | undefined = respJson?.result + ?.webApiServerCredential ?.accessToken; - const coralUserId: string = respJson?.result?.user?.id?.toString(); + const coralUserId: string | undefined = respJson?.result?.user?.id + ?.toString(); if (!idToken2 || !coralUserId) { throw new APIError({ response: resp, json: respJson, message: - `No idToken2 or coralUserId found. Please try again later. (${idToken2.length}, ${coralUserId.length})`, + `No idToken2 or coralUserId found. Please try again later. (${idToken2?.length}, ${coralUserId?.length})`, }); }