Skip to content

Commit 6ea51bb

Browse files
George-iamclaude
andcommitted
release(extension): v0.1.4 - README logo uses absolute GitHub raw URL
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) <noreply@anthropic.com>
1 parent 876fb5b commit 6ea51bb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extension/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="media/icon.png" width="160" height="160" alt="AXME Code logo" />
2+
<img src="https://raw.githubusercontent.com/AxmeAI/axme-code/main/extension/media/icon.png" width="160" height="160" alt="AXME Code logo" />
33
</p>
44

55
# AXME Code

extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "axme-code",
33
"displayName": "AXME Code",
44
"description": "Persistent memory, decisions, and safety guardrails for Cursor, GitHub Copilot, Cline, Continue, Roo Code, Windsurf, and VS Code chat agents",
5-
"version": "0.1.3",
5+
"version": "0.1.4",
66
"publisher": "AxmeAI",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)