-
Notifications
You must be signed in to change notification settings - Fork 0
chore(release): v0.4.2 — DXT download button fix #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ const MCP_CONFIG_JSON = `{ | |
| "mcpServers": { | ||
| "pluginos": { | ||
| "command": "npx", | ||
| "args": ["-y", "pluginos@0.4.1"] | ||
| "args": ["-y", "pluginos@0.4.2"] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For better maintainability, consider sourcing the version number from a single source of truth, like the |
||
| } | ||
| } | ||
| }`; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| "dxt_version": "0.1", | ||
| "name": "pluginos", | ||
| "display_name": "PluginOS", | ||
| "version": "0.4.1", | ||
| "version": "0.4.2", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To improve maintainability, consider having the |
||
| "description": "Agent-native Figma operations — run 28 Figma operations from Claude Desktop at ~230 tokens per call.", | ||
| "long_description": "PluginOS bridges Claude Desktop with Figma through a local MCP server and a companion Figma plugin. After installing this extension, open the PluginOS Bridge plugin inside Figma and Claude Desktop will be able to read selections, run audits, apply variables, and execute design operations on your behalf.", | ||
| "author": { | ||
|
|
@@ -20,7 +20,7 @@ | |
| "entry_point": "npx", | ||
| "mcp_config": { | ||
| "command": "npx", | ||
| "args": ["-y", "pluginos@0.4.1"] | ||
| "args": ["-y", "pluginos@0.4.2"] | ||
| } | ||
| }, | ||
| "compatibility": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hardcoding the version number here makes the release process more fragile. Since this file is processed by
html-webpack-plugin, you could use its templating feature to inject the version frompackage.jsonat build time. This would be more maintainable than relying on a search-and-replace script across multiple files.