From 79f4a04e20e262f307a4148976b732c4b4f2eb79 Mon Sep 17 00:00:00 2001 From: SimonShiki Date: Tue, 26 Nov 2024 16:27:20 +0800 Subject: [PATCH] :wrench: chore: bump version to 11 Signed-off-by: SimonShiki --- package.json | 2 +- src/main/trap/redux.ts | 2 +- tests/eureka.test.ts | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e880b5b..1d25581 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eureka", - "version": "10.1.0", + "version": "11.0.0", "description": "Universal Scratch Extension Loader", "author": "SimonShiki", "license": "AGPL-3.0-only", diff --git a/src/main/trap/redux.ts b/src/main/trap/redux.ts index 35bcb8d..585cd43 100644 --- a/src/main/trap/redux.ts +++ b/src/main/trap/redux.ts @@ -35,7 +35,7 @@ interface DucktypedLocalesState { interface DucktypedGUIState { vm: DucktypedVM; - [key: string]: unknown + [key: string]: unknown; } type Middleware = (api: MiddlewareAPI) => (next: (action: A) => void) => (action: A) => void; diff --git a/tests/eureka.test.ts b/tests/eureka.test.ts index 04fbfa7..838c32a 100644 --- a/tests/eureka.test.ts +++ b/tests/eureka.test.ts @@ -11,7 +11,8 @@ const TEST_SITES = [ 'https://gonfunko.github.io/scratch-gui/', 'https://world.xiaomawang.com/scratch3-playground?platform=3', 'https://code.xueersi.com/scratch/index.html?pid=2&version=3.0&preview=preview&env=community', - 'https://codingclip.com/editor/stable/' + 'https://codingclip.com/editor/stable/', + 'https://cocrea.world/gandi' ]; const TIMEOUT = 60000;