From 6ea51bbab646c922ec79ec081e112766aea0fafc Mon Sep 17 00:00:00 2001 From: geobelsky Date: Tue, 19 May 2026 14:55:05 +0000 Subject: [PATCH] release(extension): v0.1.4 - README logo uses absolute GitHub raw URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Open VSX renders the marketplace listing page's README on its own site and doesn't resolve relative paths into the .vsix bundle. The v0.1.0..v0.1.3 published listings at https://open-vsx.org/extension/AxmeAI/axme-code show a broken-image icon with the alt text "AXME Code logo" instead of the real logo, because README.md uses a relative `media/icon.png` path. Reported by @geobelsky 2026-05-19 after v0.1.3 publish: "the logo is broken in one place but fine in another." The "fine" place is the extension's icon inside Cursor (loaded from package.json "icon" field by the IDE host, not from README — works correctly because the .vsix DOES include the icon file). The "broken" place is the Open VSX listing page rendering README.md. Fix is the same as the one applied in PR #138 (e9f833d), which never made it to main because that PR was closed without merge. Lift it cleanly into v0.1.4: - extension/README.md: swap `media/icon.png` for https://raw.githubusercontent.com/AxmeAI/axme-code/main/extension/media/icon.png - extension/package.json: 0.1.3 -> 0.1.4 After this lands + tag push, the Open VSX listing page should render the AXME logo correctly. Co-Authored-By: Claude Opus 4.7 (1M context) --- extension/README.md | 2 +- extension/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extension/README.md b/extension/README.md index 4785694..f0fa0ab 100644 --- a/extension/README.md +++ b/extension/README.md @@ -1,5 +1,5 @@

- AXME Code logo + AXME Code logo

# AXME Code diff --git a/extension/package.json b/extension/package.json index 2c51050..f8bedd2 100644 --- a/extension/package.json +++ b/extension/package.json @@ -2,7 +2,7 @@ "name": "axme-code", "displayName": "AXME Code", "description": "Persistent memory, decisions, and safety guardrails for Cursor, GitHub Copilot, Cline, Continue, Roo Code, Windsurf, and VS Code chat agents", - "version": "0.1.3", + "version": "0.1.4", "publisher": "AxmeAI", "repository": { "type": "git",