Skip to content

Commit a3e6fcf

Browse files
committed
v1.2 - DevX Code IDE rebrand, Tab fix by level, Ollama model fix, logo added
1 parent f4ce25b commit a3e6fcf

26 files changed

Lines changed: 6612 additions & 420 deletions

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434
- name: Create Release
3535
uses: softprops/action-gh-release@v2
3636
with:
37-
files: vertex-devcode-*.vsix
37+
files: devx-devcode-*.vsix
3838
body: |
3939
## Vertex DevCode ${{ github.ref_name }}
4040
4141
### Installation
42-
Download `vertex-devcode-${{ steps.get_version.outputs.VERSION }}.vsix` and install:
42+
Download `devx-devcode-${{ steps.get_version.outputs.VERSION }}.vsix` and install:
4343
```bash
44-
code --install-extension vertex-devcode-${{ steps.get_version.outputs.VERSION }}.vsix
44+
code --install-extension devx-devcode-${{ steps.get_version.outputs.VERSION }}.vsix
4545
```
4646
4747
### Changes

.vscode/.temp/1.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
x = 1
2+
b = 2
3+
z = x + b
4+
print(z)

.vscode/.temp/2.py

Whitespace-only changes.

.vscodeignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
.vscode-test/**
33
out/**
44
node_modules/**
5+
!node_modules/blockly/blockly_compressed.js
6+
!node_modules/blockly/blocks_compressed.js
7+
!node_modules/blockly/javascript_compressed.js
8+
!node_modules/blockly/python_compressed.js
9+
!node_modules/blockly/msg/en.js
10+
!node_modules/blockly/media/**
511
src/**
612
.gitignore
713
.yarnrc

0 commit comments

Comments
 (0)