From af0ea16ecc68ad576a392d0c0f68ddef5fa8f181 Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Thu, 30 Nov 2023 12:55:31 +0800 Subject: [PATCH 1/6] chore update `WEB_VIEW_VERSION` --- src/constant.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constant.ts b/src/constant.ts index 90f8dee..665454b 100644 --- a/src/constant.ts +++ b/src/constant.ts @@ -3,7 +3,7 @@ import type { StatInkPostBody, VsHistoryDetail } from "./types.ts"; export const AGENT_NAME = "s3si.ts"; export const S3SI_VERSION = "0.4.10"; 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 { HomeQuery = "51fc56bbf006caf37728914aa8bc0e2c86a80cf195b4d4027d6822a3623098a8", @@ -24,7 +24,7 @@ export enum Queries { CoopHistoryQuery = "0f8c33970a425683bb1bdecca50a0ca4fb3c3641c0b2a1237aedfde9c0cb2b8f", CoopHistoryDetailQuery = - "824a1e22c4ad4eece7ad94a9a0343ecd76784be4f77d8f6f563c165afc8cf602", + "42262d241291d7324649e21413b29da88c0314387d8fdf5f6637a2d9d29954ae", myOutfitCommonDataFilteringConditionQuery = "ac20c44a952131cb0c9d00eda7bc1a84c1a99546f0f1fc170212d5a6bb51a426", myOutfitCommonDataEquipmentsQuery = From e4be0f2fe387aa0abb6d5f4ce711fb1114a51f87 Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Thu, 30 Nov 2023 12:56:53 +0800 Subject: [PATCH 2/6] chore: update S3SI_VERSION --- CHANGELOG.md | 4 ++++ gui/src-tauri/tauri.conf.json | 2 +- src/constant.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c48c19..1e6e5e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.4.11 + +chore: update `WEB_VIEW_VERSION` and queries + ## 0.4.10 feat: support random primary ability diff --git a/gui/src-tauri/tauri.conf.json b/gui/src-tauri/tauri.conf.json index b738e83..1df36a1 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.10" + "version": "0.4.11" }, "tauri": { "allowlist": { diff --git a/src/constant.ts b/src/constant.ts index 665454b..1f253b3 100644 --- a/src/constant.ts +++ b/src/constant.ts @@ -1,7 +1,7 @@ import type { StatInkPostBody, VsHistoryDetail } from "./types.ts"; export const AGENT_NAME = "s3si.ts"; -export const S3SI_VERSION = "0.4.10"; +export const S3SI_VERSION = "0.4.11"; export const NSOAPP_VERSION = "2.7.1"; export const WEB_VIEW_VERSION = "6.0.0-e135295b"; export enum Queries { From bfb7d796096a0a1ec492202ba201a528e2a4ffc4 Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Thu, 30 Nov 2023 13:19:35 +0800 Subject: [PATCH 3/6] ci: update pnpm version --- .github/workflows/gui.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gui.yaml b/.github/workflows/gui.yaml index 1758758..f44d2cd 100644 --- a/.github/workflows/gui.yaml +++ b/.github/workflows/gui.yaml @@ -29,7 +29,7 @@ jobs: - uses: pnpm/action-setup@v2 with: - version: 7.29.1 + version: 8.11.0 - name: Sync node version and setup cache uses: actions/setup-node@v3 From a7b0783f89029aa25325ae5321d08dc08287f051 Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Thu, 30 Nov 2023 13:27:55 +0800 Subject: [PATCH 4/6] chore: update NSOAPP_VERSION --- src/constant.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constant.ts b/src/constant.ts index 1f253b3..37ccb5c 100644 --- a/src/constant.ts +++ b/src/constant.ts @@ -2,7 +2,7 @@ import type { StatInkPostBody, VsHistoryDetail } from "./types.ts"; export const AGENT_NAME = "s3si.ts"; export const S3SI_VERSION = "0.4.11"; -export const NSOAPP_VERSION = "2.7.1"; +export const NSOAPP_VERSION = "2.8.0"; export const WEB_VIEW_VERSION = "6.0.0-e135295b"; export enum Queries { HomeQuery = From 6a4fd3ccebfd998569b2d267c48c56ab37d068a8 Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Thu, 30 Nov 2023 13:44:06 +0800 Subject: [PATCH 5/6] chore: update VersionData --- src/VersionData.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/VersionData.ts b/src/VersionData.ts index cfbab7b..7dcb475 100644 --- a/src/VersionData.ts +++ b/src/VersionData.ts @@ -36,6 +36,12 @@ export const SEASONS: Season[] = [ start: new Date("2023-09-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 => { From 02c1c9219140f33c6941af503b6af2b842fca69f Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Fri, 1 Dec 2023 13:46:36 +0800 Subject: [PATCH 6/6] fix: use old NSO app version --- src/constant.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constant.ts b/src/constant.ts index 37ccb5c..1f253b3 100644 --- a/src/constant.ts +++ b/src/constant.ts @@ -2,7 +2,7 @@ import type { StatInkPostBody, VsHistoryDetail } from "./types.ts"; export const AGENT_NAME = "s3si.ts"; export const S3SI_VERSION = "0.4.11"; -export const NSOAPP_VERSION = "2.8.0"; +export const NSOAPP_VERSION = "2.7.1"; export const WEB_VIEW_VERSION = "6.0.0-e135295b"; export enum Queries { HomeQuery =