From 9dba788ef1c762f4ad13f9b0fa82989062a894d9 Mon Sep 17 00:00:00 2001 From: x1unix Date: Sun, 7 Jul 2024 01:39:18 -0400 Subject: [PATCH 1/3] fix: fix cover dirs --- tools/cover.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cover.txt b/tools/cover.txt index fb6422c3..3b17440d 100644 --- a/tools/cover.txt +++ b/tools/cover.txt @@ -1,5 +1,5 @@ ./internal/builder/... ./internal/analyzer/... ./pkg/goplay/... -./internal/langserver/webutil +./internal/server/webutil ./pkg/util/... \ No newline at end of file From cb98b6be8e8f29afc5e84709d42149a073331bf0 Mon Sep 17 00:00:00 2001 From: x1unix Date: Sun, 7 Jul 2024 01:46:41 -0400 Subject: [PATCH 2/3] chore: add changelog for v2.0.0-beta.3 --- web/src/changelog.json | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/web/src/changelog.json b/web/src/changelog.json index 344efcd5..f835ecee 100644 --- a/web/src/changelog.json +++ b/web/src/changelog.json @@ -1,19 +1,33 @@ { - "Interface - Terminal": [ + "Go - General": [ { - "issueId": 303, - "url": "/pull/303", - "description": "Support terminal sequences and colored output" + "issueId": 324, + "url": "issues/324", + "description": "Add workaround for Playground API unit tests bug" + } + ], + "Go - WebAssembly": [ + { + "issueId": 348, + "url": "/issues/348", + "description": "Disable Yaegi Go interpreter" + } + ], + "Interface - General": [ + { + "issueId": 354, + "url": "pull/354", + "description": "Add file deletion confirm dialog" }, { - "issueId": 264, - "url": "/issues/264", - "description": "Cleanup output before run" + "issueId": 347, + "url": "pull/347", + "description": "Add DarkReader extension support" }, { - "issueId": 267, - "url": "/issues/267", - "description": "Fix new line formatting in output" + "issueId": 346, + "url": "pull/346", + "description": "Disable broken service worker" } ] } From cfba4fd441906a0e2b68c6a37052d2416d75ec26 Mon Sep 17 00:00:00 2001 From: x1unix Date: Sun, 7 Jul 2024 01:48:40 -0400 Subject: [PATCH 3/3] chore: set clear interval for local dev --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c9fd17ff..851b81b8 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ export VITE_WASM_BASE_URL=/wasm .PHONY:run run: - @GOROOT=$(GOROOT) $(GO) run $(PKG) \ + @GOROOT=$(GOROOT) APP_CLEAN_INTERVAL=10h $(GO) run $(PKG) \ -f ./data/packages.json \ -static-dir="$(UI)/build" \ -gtag-id="$(GTAG)" \