Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 3 additions & 16 deletions .github/workflows/hotfix_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -81,24 +79,15 @@ jobs:
- name: Bump version
run: node scripts/bump-version.js "${{ github.event.inputs.version }}"

- name: Compile extension
run: pnpm run compile

- name: Prepare multiplatform package dependencies
run: pnpm install --force

- name: Package extension
run: pnpm exec vsce package

- name: Commit updated package.json and dist directory
- name: Commit bumped package.json
id: commit
uses: EndBug/add-and-commit@v9
with:
add: './out/ ./promptimize-*.vsix ./package.json'
add: './package.json'
committer_name: GitHub Actions
committer_email: actions@github.com
default_author: user_info
message: 'gh-action: updated compiled files and bumped version to ${{ github.event.inputs.version }} (hotfix)'
message: 'gh-action: bumped version to ${{ github.event.inputs.version }} (hotfix)'

tag:
name: Publish version
Expand Down Expand Up @@ -134,8 +123,6 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
19 changes: 3 additions & 16 deletions .github/workflows/release_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -81,24 +79,15 @@ jobs:
- name: Bump version
run: node scripts/bump-version.js "${{ github.event.inputs.version }}"

- name: Compile extension
run: pnpm run compile

- name: Prepare multiplatform package dependencies
run: pnpm install --force

- name: Package extension
run: pnpm exec vsce package

- name: Commit updated package.json and dist directory
- name: Commit bumped package.json
id: commit
uses: EndBug/add-and-commit@v9
with:
add: './out/ ./promptimize-*.vsix ./package.json'
add: './package.json'
committer_name: GitHub Actions
committer_email: actions@github.com
default_author: user_info
message: 'gh-action: updated compiled files and bumped version to ${{ github.event.inputs.version }} (release)'
message: 'gh-action: bumped version to ${{ github.event.inputs.version }} (release)'

tag:
name: Publish version
Expand Down Expand Up @@ -134,8 +123,6 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ See [`docs/architecture/`](docs/architecture/) for detailed architecture documen

### Upgrading from Cursor Whisper

The extension was renamed to **Promptimize** (`promptimize` publisher). If you previously installed `cursor-whisper`:
The extension was renamed to **Promptimize** (`vypdev` publisher). If you previously installed `cursor-whisper`:

1. Uninstall the old **Cursor Whisper** extension
2. Install `promptimize-*.vsix` (or the new Marketplace listing when available)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"color": "#1a1d3a",
"theme": "dark"
},
"version": "0.1.0",
"publisher": "promptimize",
"version": "1.0.3",
"publisher": "vypdev",
"author": {
"name": "Promptimize Team"
},
Expand Down
Loading