From 0cc4552506117d673a866200388fdedf61a55c5d Mon Sep 17 00:00:00 2001 From: mirivlad Date: Wed, 17 Jun 2026 19:02:58 +0800 Subject: [PATCH] fix(platform-test): replace emoji icons with SVG icon key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - plugin.json: all emoji icons replaced with "flask" (matches Icon.svelte name) - statusBar label: "๐Ÿงช All Tests Pass" โ†’ "[OK] All Tests Pass" - frontend/src/index.js: emoji in header replaced with 'โ—‰' circle --- plugins/platform-test/frontend/dist/index.js | 2 +- plugins/platform-test/frontend/src/index.js | 2 +- plugins/platform-test/plugin.json | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/platform-test/frontend/dist/index.js b/plugins/platform-test/frontend/dist/index.js index 9bc1e5f..a6c941c 100644 --- a/plugins/platform-test/frontend/dist/index.js +++ b/plugins/platform-test/frontend/dist/index.js @@ -66,7 +66,7 @@ /* โ”€โ”€ Header โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ var header = div('pt-header', [ - span('pt-icon', '๐Ÿงช'), + span('pt-icon', 'โ—‰'), div('pt-title-group', [ el('h2', { className: 'pt-plugin-name' }, ['Platform Diagnostics']), el('p', { className: 'pt-plugin-id' }, [api.pluginId]), diff --git a/plugins/platform-test/frontend/src/index.js b/plugins/platform-test/frontend/src/index.js index 9bc1e5f..a6c941c 100644 --- a/plugins/platform-test/frontend/src/index.js +++ b/plugins/platform-test/frontend/src/index.js @@ -66,7 +66,7 @@ /* โ”€โ”€ Header โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ */ var header = div('pt-header', [ - span('pt-icon', '๐Ÿงช'), + span('pt-icon', 'โ—‰'), div('pt-title-group', [ el('h2', { className: 'pt-plugin-name' }, ['Platform Diagnostics']), el('p', { className: 'pt-plugin-id' }, [api.pluginId]), diff --git a/plugins/platform-test/plugin.json b/plugins/platform-test/plugin.json index bf3de44..b410dc4 100644 --- a/plugins/platform-test/plugin.json +++ b/plugins/platform-test/plugin.json @@ -6,7 +6,7 @@ "apiVersion": "0.1.0", "description": "Runtime test plugin for verifying the Verstak platform: manifest loading, capability registration, contribution injection, event bus, and UI rendering.", "source": "official", - "icon": "๐Ÿงช", + "icon": "flask", "provides": [ "verstak/platform-test/v1", "verstak/diagnostics/v1" @@ -34,7 +34,7 @@ { "id": "verstak.platform-test.diagnostics", "title": "Platform Diagnostics", - "icon": "๐Ÿงช", + "icon": "flask", "component": "DiagnosticsPanel" } ], @@ -54,7 +54,7 @@ { "id": "verstak.platform-test.sidebar", "title": "Platform Test", - "icon": "๐Ÿงช", + "icon": "flask", "view": "verstak.platform-test.diagnostics", "position": 100 } @@ -62,7 +62,7 @@ "statusBarItems": [ { "id": "verstak.platform-test.status", - "label": "๐Ÿงช All Tests Pass", + "label": "[OK] All Tests Pass", "position": "right", "handler": "openDiagnostics" } @@ -71,7 +71,7 @@ { "id": "verstak.platform-test.settings", "title": "Platform Test Settings", - "icon": "๐Ÿงช", + "icon": "flask", "component": "PlatformTestSettings" } ]