diff --git a/.github/workflows/vscode-publish.yml b/.github/workflows/vscode-publish.yml index 4c12c60de..8964623cd 100644 --- a/.github/workflows/vscode-publish.yml +++ b/.github/workflows/vscode-publish.yml @@ -28,4 +28,9 @@ jobs: with: packagePath: editors/vscode pat: ${{ secrets.VS_MARKETPLACE_TOKEN }} - registryUrl: https://marketplace.visualstudio.com \ No newline at end of file + registryUrl: https://marketplace.visualstudio.com + - name: Publish to Open VSX Registry + uses: HaaLeo/publish-vscode-extension@v1 + with: + packagePath: editors/vscode + pat: ${{ secrets.VSX_MARKETPLACE_TOKEN }} diff --git a/editors/README.md b/editors/README.md index 3f033b474..8974e8825 100644 --- a/editors/README.md +++ b/editors/README.md @@ -24,10 +24,9 @@ LSP client. That is if you have `swarm` executable in PATH, then the executable will be used as LSP server to show errors as you type. You can get it by: -- installing from MS marketplace ([link](https://marketplace.visualstudio.com/items?itemName=xsebek.swarm-language)) +- installing from the MS marketplace ([link](https://marketplace.visualstudio.com/items?itemName=swarm-game.swarm-language)) +- installing from the Open VSX Registry ([link](https://open-vsx.org/extension/swarm-game/swarm-language)) - building from source in the [vscode folder](./vscode/DEVELOPING.md) -- **TBD** get the VSIX from GitHub releases -- **TBD** installing from the VS codium free marketplace ### YAML schema validation diff --git a/editors/vscode/CHANGELOG.md b/editors/vscode/CHANGELOG.md index 0a36575b0..d5e1dc933 100644 --- a/editors/vscode/CHANGELOG.md +++ b/editors/vscode/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to the "swarm-language" extension will be documented in this file. +## version 0.1.1 +- Move the extension under "swarm-game" org + ## version 0.0.9 - [Highlighter] add `unit` and `actor` types - [Highlighter] add many new commands: diff --git a/editors/vscode/client/package.json b/editors/vscode/client/package.json index 51c141501..df6e0aa65 100644 --- a/editors/vscode/client/package.json +++ b/editors/vscode/client/package.json @@ -4,8 +4,8 @@ "description": "VSCode part of the swarm language server", "author": "Ondřej Šebek", "license": "MIT", - "version": "0.0.3", - "publisher": "xsebek", + "version": "0.1.1", + "publisher": "swarm-game", "repository": { "type": "git", "url": "https://github.com/swarm-game/swarm" diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 2bc11bc74..9fb90f147 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -2,9 +2,9 @@ "name": "swarm-language", "displayName": "swarm-language", "description": "VSCode support for swarm (the game) programming language.", - "version": "0.0.9", + "version": "0.1.1", "icon": "images/swarm-logo.png", - "publisher": "xsebek", + "publisher": "swarm-game", "repository": { "url": "https://github.com/swarm-game/swarm" },