Skip to content

Commit 68b76bd

Browse files
committed
Rename package and add Marketplace publishing
Rename extension/package to the OpenVSX variant (cfxlua-vscode-openvsx), bump version to 1.10.15, and update displayName and repository URL. Align runtime id in src/extension.ts with the new package name. Update README badges/links to include Open VSX and Visual Studio Marketplace and clarify this is a community-maintained fork. Add a workflow step to publish to the Visual Studio Marketplace (in addition to Open VSX) and enable yarn publishing. Regenerated yarn.lock.
1 parent 8ded149 commit 68b76bd

5 files changed

Lines changed: 909 additions & 826 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,11 @@ jobs:
3434
with:
3535
pat: ${{ secrets.OPEN_VSX_TOKEN }}
3636
registryUrl: https://open-vsx.org
37+
yarn: true
38+
39+
- name: Publish to Visual Studio Marketplace
40+
uses: HaaLeo/publish-vscode-extension@v2
41+
with:
42+
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
43+
registryUrl: https://marketplace.visualstudio.com
3744
yarn: true

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# CfxLua IntelliSense (FiveM / RedM)
22

3-
[![Open VSX Registry](https://img.shields.io/open-vsx/v/anishbplayz/cfxlua-vscode-cox)](https://open-vsx.org/extension/anishbplayz/cfxlua-vscode-cox) [![Open VSX Downloads](https://img.shields.io/open-vsx/dt/anishbplayz/cfxlua-vscode-cox)](https://open-vsx.org/extension/anishbplayz/cfxlua-vscode-cox)
3+
[![Open VSX Registry](https://img.shields.io/open-vsx/v/anishbplayz/cfxlua-vscode-openvsx)](https://open-vsx.org/extension/anishbplayz/cfxlua-vscode-openvsx) [![Open VSX Downloads](https://img.shields.io/open-vsx/dt/anishbplayz/cfxlua-vscode-openvsx)](https://open-vsx.org/extension/anishbplayz/cfxlua-vscode-openvsx) [![VS Code Marketplace](https://img.shields.io/visual-studio-marketplace/v/anishbplayz.cfxlua-vscode-openvsx)](https://marketplace.visualstudio.com/items?itemName=anishbplayz.cfxlua-vscode-openvsx) [![VS Code Marketplace Installs](https://img.shields.io/visual-studio-marketplace/i/anishbplayz.cfxlua-vscode-openvsx)](https://marketplace.visualstudio.com/items?itemName=anishbplayz.cfxlua-vscode-openvsx)
4+
5+
**Source:** [AnishBplayz/cfxlua-vscode-openvsx](https://github.com/AnishBplayz/cfxlua-vscode-openvsx)
46

57
> [!NOTE]
6-
> **This is a community maintained fork of archived [overextended/cfxlua-vscode](https://github.com/overextended/cfxlua-vscode).**
7-
>
8-
> **Temporary Publishing Notice:** This extension is temporarily published under the `anishbplayz` namespace on Open VSX Registry until the community maintains official publishing. Once the community takes over publishing, this temporary version will be deprecated in favor of the official release.
8+
> Community-maintained fork of archived [overextended/cfxlua-vscode](https://github.com/overextended/cfxlua-vscode). Published under the `anishbplayz` namespace on [Open VSX Registry](https://open-vsx.org/extension/anishbplayz/cfxlua-vscode-openvsx) and [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=anishbplayz.cfxlua-vscode-openvsx).
99
1010
_This extension is not authored, published, sponsored, nor endorsed by Cfx.re._
1111

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "cfxlua-vscode-cox",
3-
"displayName": "CfxLua IntelliSense",
2+
"name": "cfxlua-vscode-openvsx",
3+
"displayName": "CfxLua IntelliSense for VSCode | OpenVSX",
44
"description": "Natives and IntelliSense support for the Lua Script runtime used by FiveM and RedM.",
5-
"version": "1.10.14",
5+
"version": "1.10.15",
66
"publisher": "anishbplayz",
77
"license": "MIT",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/AnishBplayz/cfxlua-vscode-cursor"
10+
"url": "https://github.com/AnishBplayz/cfxlua-vscode-openvsx"
1111
},
1212
"engines": {
1313
"vscode": "^1.71.0"

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import * as path from 'node:path';
1212
import * as os from 'node:os';
1313
import moveFile from './moveFile';
1414

15-
export const id = 'anishbplayz.cfxlua-vscode-cox';
15+
export const id = 'anishbplayz.cfxlua-vscode-openvsx';
1616
export const extension = extensions.getExtension(id)!;
1717
export let storagePath = '';
1818

0 commit comments

Comments
 (0)